home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1998 July / EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso / earkit / browser / alynx / changes < prev    next >
Text File  |  1998-05-24  |  96KB  |  1,871 lines

  1. 08-24-95
  2. * Modified prompted string editing via LYgetstr() along lines in patch
  3.   from PM (editing of form INPUT and TEXTAREA strings is unchanged).
  4.   Here's how the prompted string editing works:  Left-arrow and Backspace
  5.   (Control-H) move the cursor to the left, and Right-arrow to the right,
  6.   within the string.  Characters are INSERTed at the cursor position.
  7.   Delete removes characters to the left of the cursor.  Home, Find and
  8.   Control-A move the cursor to the beginning of the string.  End, Select
  9.   and Control-E move the cursor to the end.  Control-U erases the string.
  10.   Control-G cancels at any time.  Return accepts if a string is present,
  11.   or cancels if it was fully erased or never entered.  A right-curley
  12.   brace appears in the right-most column when the string has segment(s)
  13.   scrolled off screen, and if left scrolled, the cursor sits on it for
  14.   further editing with the above command keys (or acceptance via Return).
  15.   Long strings scroll both left and right between the prompt string and
  16.   right-curley brace.  Had to modify 17 files to make this line editor
  17.   crash safe (I hope people like it!  8-). - FM
  18. 08-22-95
  19. * Use a macro in parse_arg() of LYMain.c to ensure proper handling of
  20.   switches which take a value and might have a space instead of an '='
  21.   between the name and value. - DW
  22. * Insulate any system RTL's getline() from the one in HTInit.c. - DW
  23. * Enabled editing of titles when adding bookmarks. - FM
  24. 08-21-95
  25. * Fixed the IBM PC character set in LYCharSets.c (Note:  The PC-set has the
  26.   currency symbol but it is a control character - ^O - so there is a chance
  27.   that curses or the user's terminal may discard it.  Did not fix the
  28.   Icelandic characters). - DW
  29. * Check whether getpwuid() and getgrid() have returned NULL pointers in
  30.   LYShowInfo.c. - DW
  31. * Break up the too elaborate, compound assignment statements in LYList.c
  32.   so no compilers get tripped up by evaluation order effects. - DW
  33. * Worked in mods from DW to cope with CR, CRLF or LF all as EOL in HTML.c
  34.   and GridText.c (not sure if they take into account all of the consequences
  35.   of Lou's "big cheat" in GridText.c, but they appear to, so far). - FM
  36. * Explicitly preserve the Lynx bookmark file mode on Unix. - DSL
  37. 08-20-95
  38. * More documentation and help updates. - FM
  39. 08-19-95
  40. * Updated INSTALLATION and comments in userdefs.h and lynx.cfg. - FM
  41. * If save to disk was done via the download menu, and a VMS rename() attempt
  42.   succeeded so we don't spawn a COPY, we no longer can access the file via
  43.   the download menu, so pop in that situation. - FM
  44. * Worked in stuff from 16-Aug-95 lynx2-4-2 upgrade.  Most had already been
  45.   added to lynx2-4-FM.  This is the new stuff. - FM:
  46. ---------------------------------------------------
  47.   08-16-95
  48.   * Applied patch from Peter van Heusden (pch@ucthpx.uct.ac.za) to fix 
  49.     a bug when lynx encounters an OPTION tag before the style is
  50.     ever updated. - CL
  51.   08-09-95
  52.   * Added some tweaks to Makefile and LYCurses.h to get lynx to properly
  53.     compile on ISC.  Thanks to Robert Salter (salter1@master.nsbf.nasa.gov).
  54. ---------------------------------------------------
  55. 08-18-95
  56. * Added a -validate switch for turning off everything except http URLs,
  57.   helpfiles, and secure menus in Lynx.  Can be used with -dump in CGI
  58.   scripts, but is intended for use with anonymous telnet logins.  In the
  59.   latter case, the user can start with his/her server's or userdir homepage,
  60.   and validate everything, while able to manipulate the display features
  61.   (e.g., whether or not links are numbered) and turn on trace (Control-T,
  62.   then Control-R to reload) when a "Bad HTML" document is encountered.  The
  63.   telnet approach is particularly useful when used with the 'l'ist feature.
  64.   When used with -dump, compare it with versus without -nolist. - FM
  65. * Added a missing curley brace in EF's (08-16-95) patches. - FM
  66. 08-17-95
  67. * Added HISTORICAL_COMMENTS symbol which if set TRUE in lynx.cfg will cause
  68.   Lynx to revert to the "historical" behavior of treating any '>' as a
  69.   comment terminator instead of (a valid) '-->', and a -historical switch
  70.   for toggling the default behavior. - FM
  71. * Added a -nolist switch for turning off the link list feature in dumps. - FM
  72. * Modified SGML.c so that it still substitutes the expected end tag if a
  73.   different one is encountered (e.g, due to a document having interdigitated
  74.   instead of validly embedded tags), but doesn't do a wind down of the
  75.   element stack.  This gives it a better chance of recovering from bad
  76.   HTML, and the sanity checks I've added thus far in HTML.c appear to still
  77.   be adequate for avoiding crashes (we'll see 8-). - FM
  78. 08-16-95
  79. * Mods to support within-document anchors in documents returned via
  80.   lynxcgi scripts. - FM
  81. * Worked in EF's patches to handle changes of keymaps under DIRED_SUPPORT
  82.   with OK_OVERRIDE, and to give the user some feedback during an Install
  83.   command. - FM
  84. 08-15-95
  85. * Don't include a Referer header for 'g'oto URLs. - FM
  86. * Added patches from PR for compilations with VMS port of GNUC:  Modified
  87.   several prototypes to avoid GNUC warnings about conflicts with ones in
  88.   lib$routines.h, and added code in HTVMS_WaisUI.c to deal with an obscure
  89.   glitch for GNUC v2.6.[123] (not present in v2.6.0 or earlier, and fixed
  90.   in v2.7.0; hopefully deals with the problem SB reported; see 07-29-95
  91.   changes). - FM
  92. * Worked in code from PR as LYVMS_FixedLengthRecords() in HTFWriter.c to
  93.   change attributes of binary files on VMS from Stream_LF to FIXED 512,
  94.   no implied carriage control, best try contiguous.  Replaces the spawn
  95.   to execute FIXED512.COM. - FM
  96. 08-14-95
  97. * Modified TEXTAREA handling to succeed or fail on bad HTML equivalently
  98.   to Netscape. - FM
  99. 08-12-95
  100. * Mods to avoid crashes and to do something reasonable with OPTION strings
  101.   that are wider than the available popup window width.  Truncation is
  102.   indicated by omission of a terminating ']' in the window link, and the
  103.   window, when popped up, is made equal to the screen width (but we can't
  104.   wrap the strings within the window, so they're truncated if they still
  105.   don't fit). - FM
  106. * Mods to handle INPUT fields that are packaged in PRE and would extend past
  107.   the wrap column.  No way to make that perfect without a major redesign,
  108.   but it's better now. - FM
  109. 08-10-95
  110. * Handle 'g'oto entries equivalently to STARTFILE and HOMEPAGE, i.e., if
  111.   the user's entry isn't a URL, convert it to a file URL if it's a file
  112.   or directory on the local system, otherwise convert it to an http URL.
  113.   For example, "~/" will be converted to a file URL for listing the HOME
  114.   directory (on both Unix and VMS), and "www.netscape.com" will become
  115.   "http://www.netscape.com". - FM
  116. * Fix LYCurses.h to deal with definitions of TRUE and FALSE in cursesX.h
  117.   on ultrix. - Brian Exelbierd (bex@ncsu.edu)
  118. * Made SYSTEM_MAIL, and MAIL_ADRS on VMS, configurable in lynx.cfg. - FM
  119. 08-08-95
  120. * Fixed two initialization problems that could account for reports of
  121.   inappropriate HEAD requests in pops of cached documents. - FM
  122. * More tweaks for coping with bad HTML. - FM
  123. * Fixed bug in code for bypassing bad SUFFIX: or VIEWER: entries. - FM
  124. 08-06-95
  125. * Added code in GridText.c to deal with syntactically OK but symantically
  126.   nonsensical uses of ALT="" in IMG tags (i.e., when the IMG is structured
  127.   to provide the anchor for a link, and so the anchor ends up with nothing
  128.   but nonprinting characters for bolding), and removed the forcing of an
  129.   "[ISMAP]" pseudo-ALT in HTML.c.  The show_anchor element in TextAnchor
  130.   structures is now set to NO whenever an anchor does not have any
  131.   printing characters. - FM
  132. * Modified HTML.c to issue only one "Bad HTML" statusline message per
  133.   document (unless it's one of those unbelievably bad CGI script outputs
  134.   that are functionally multiple, concatenated documents 8-), and similarly
  135.   for "Table in Form" and "Form in Table" informational messages. - FM
  136. * Don't bother prompting whether to send a HEAD request for the current
  137.   document if there are no links on the page (but still prompt if the user
  138.   makes a HEAD request when positioned on an inappropriate form link). - FM
  139. 08-05-95
  140. * Added code in SGML.c for storing Identfiers (e.g., !DOCTYPE) and Comments
  141.   (i.e., tags beginning with !--) and for reporting them in trace mode.
  142.   Serves as a model for actually using them someday (i.e, functions for
  143.   analyzing them could be called where we presently just invoke a trace
  144.   output to stderr). - FM
  145. 08-03-95
  146. * Modified SGML.c to handle comments as in the current specs, and put
  147.   Paul Gilmartin's (pg@sweng.stortek.com) TestComment.html in the
  148.   test subdirectory. - FM
  149. * Added binary extensions in HTInit.c that were giving people problems
  150.   on FTP servers. - FM
  151. 08-02-95
  152. * Added explicit check for CMU in telnet support with SOCKETSHR-built
  153.   images. - SB
  154. * Added -link switch for setting the count in lnk#.dat files with -crawl
  155.   (needed if you interrupt a traversal and want to pick up again where
  156.   you left off). - DM
  157. * More tweaks of -traversal code and Makefile.  All known bugs appear to
  158.   have been dealt with at this point.  Updated lynx.man, lynx.hlp and
  159.   help files to include the -traversal and -crawl switches. - FM
  160. 08-01-95
  161. * Changed the SEQUENT compilation sympbol to PTX2 and added a ptx2 procedure
  162.   to the Makefile for Sequent Symmetry DYNIX/ptx v2, because more current
  163.   versions reportedly have solved the problems which the conditional
  164.   compilation attempted to address. - FM
  165. * Force in the "[ISMAP]" pseudo-ALT if someone uses ALT="" for an IMG tag
  166.   that has ISMAP specified. - FM
  167. * Tweaks of the -traversal code (still experimental). - DM & FM
  168. 07-31-95
  169. * Worked in code from David Mathog (mathog@seqaxp.bio.caltech.edu) for
  170.   implementing the TRAVERSAL function from old versions of Lynx, but via
  171.   a command line switch (-traversal) instead of in a separately compiled
  172.   executable, and for a CRAWL function, invoked via a command line switch
  173.   (-crawl), which allows Lynx to be used as the front end for a Web Crawler.
  174.   See CRAWL.announce for more information. - FM
  175. * More tweaks of LYCurses.c and LYCgi.c for GNUC on VMS. - SB
  176. * More tweaks of src/Makefile. - DSL
  177. 07-30-95
  178. * Tweaks of yesterday's Makefile and descrip.mms files. - FM
  179. 07-29-95
  180. * Tweak in HTFTP.c to ensure that Lynx doesn't sit around waiting for an
  181.   FTP server's good-bye message if the server closes the connection itself
  182.   and doesn't send one. - FM
  183. * Added GNUC support to the VMS descrip.mms files. - FM
  184. * Tweaks of HTWAIS.c socket handling on VMS (I can't reproduce a reported
  185.   problem with SOCKETSHR/NetLIB, but these tweaks might help). - FM 
  186. * Added my guesses at code for HTTelnet.c to implement telnet, tn3270 and
  187.   rlogin support, if available, when building with SOCKETSHR/NetLIB on
  188.   VMS. - FM
  189. 07-28-95
  190. * Mods for Sequent Symmetry DYNIX/ptx - Mark Kolmar (mkolmar@ccs.nslsilus.org)
  191. * Added GL's lynxcgi patches posted to lynx-dev, plus some tweaks. - FM
  192. * Worked in GL's lynxcgi mods as in Lynx2-4-2:
  193.   --------------------------------------------
  194.    Added George Lindholm's LYNXCGI feature.  This allows lynx to bypass
  195.    http daemons to run local CGI scripts using a URL of the form
  196.    "lynxcgi:/path/cgi-script".  To implement in Lynx, LYNXCGI_LINKS
  197.    must be uncommented in userdefs.h and TRUSTED_LYNXCGI must be fixed
  198.    in lynx.cfg.  It doesn't handle redirection or mime-types and
  199.    scripts should probably generate partial URLs when referring back to
  200.    itself. If the file you're going after isn't an executable then it
  201.    will be loaded as regular file. This makes it possible to go back
  202.    and forth between cgi-scripts and .html files. 
  203.    I changed the way TRUSTED_LYNXCGIs are recorded because they don't
  204.    work quite the same as TRUSTED_EXECs do. Also, George says it works
  205.    fine on SunOS and Solaris, and it seems to work fine on Linux. - CL
  206.   --------------------------------------------
  207. * Don't block access to the download menu when both no_download and
  208.   no_disk_save are set if any of the download commands have always_enabled
  209.   set (ie. present a reduced menu, with those still available). - FM
  210. * More tweaks of help and html files. - DSL
  211. 07-26-95
  212. * Added support for GNUC in the VMS .com files.  Should now compile and link
  213.   automatically for GNUC via build.com, but that needs testing. - FM
  214. * Reorganized VMS option files into ones for the transport and ones for the
  215.   compiler, with corresponding updates of the .com and .mms files. - FM
  216. * Tweaks of mods for GNUC on VMS, based on further discussions with
  217.   SB. - FM
  218. * Tweaks of -help output. - Daniel S. Lewart (d-lewart@uiuc.edu)
  219. 07-25-95
  220. * Ugh!!  Blew it for Unix when setting up the GLOBALDEF/GLOBALREF definitions
  221.   in tcp.h for VAXC vs. DECC vs. GNUC on VMS this morning (I'm a night
  222.   person 8-). - FM
  223. * Worked in code for compiling with the VMS port of GNUC, based on patches
  224.   from Sterling Bjorndahl (bjorndahl@augustana.ab.ca) and advice from
  225.   Pat Rankin (rankin@eql.caltech.edu).  Needs testing, and the linking
  226.   procedure still needs to be addressed explicitly. - FM
  227. * Prevent possibility of a null pointer dereference if an ISMAP anchor
  228.   fetch fails. - David Trueman (david@cs.dal.ca)  
  229. 07-21-95
  230. * Added LYK_HEAD (mapped by default to ']') to send HEAD requests for the
  231.   current document or link (always sent with LYforce_no_cache). - FM
  232. * More lynx.man, lynx.hlp, help file and documentation updates. - FM
  233. 07-19-95
  234. * Put back "-mime_headers" with mods like those in lynx2-4-2, i.e., so that
  235.   a source dump is forced.  Both "-mine_headers" and "-head" show the status
  236.   line as well as the MIME headers. - FM
  237. * Modified "-error_file" to show the complete status line, as well as the
  238.   URL and METHOD, and to concatenate entries instead of creating separate
  239.   files for each request. - FM
  240. * Updated the lynx.man, lynx.hlp and lynx_help files. - FM
  241. 07-18-95
  242. * Changed "-mime_headers" to "-head" and implemented it as a HEAD request
  243.   for fetching the MIME headers as text/plain. - FM
  244. 07-17-95
  245. * Removed 00DIFFERENT from this distribution. - FM
  246. * Made use of _underline_ format in dumps optional via SUBSTITUTE_UNDERSCORES
  247.   definitions in userdefs.h and/or lynx.cfg, and added a "-underscore"
  248.   command line switch for toggling the default on or off. - FM
  249. * Use system("exec $SHELL") for spawning the default shell on Unix. - Paul
  250.   Gilmartin (pg@sweng.stortek.com)
  251. * Fixed typo in check for news vs. nntp URLs in HTNews.c. - Wilson Cheung
  252.   (wcheung@netcom.com)
  253. * Added code to the VMS setup() for dealing with curses conficts if someone
  254.   used -post_data or -get_data without specifying -dump under conditions
  255.   which require it, so it's not forced in LYMain.c as on Unix.  If fact,
  256.   -get_data and -post_data are very useful in interactive invokations. - FM
  257. * Fixed memory leak in the -post_data and -get_data handling. - FM
  258. * Added LYNX_HOST_NAME in userdefs.h and lynx.cfg for defining an alias
  259.   which will be treated equivalently to "localhost" and HTHostName (the
  260.   fully qualified domain name of the system running Lynx) in checks for
  261.   URLs on the local host (e.g., when the -localhost switch is set). - FM
  262. * Added in or improved descriptions for the new switches in the Lynx
  263.   command line help and Lynx_users_guide.html. - FM
  264. 07-16-95
  265. * Tweaks of yesterday's startfile and -homepage mods, and added treatment
  266.   of '~' as SYS$LOGIN when used as the lead character on VMS (e.g., on
  267.   VMS as on Unix,  lynx ~/  will create a listing of the login directory
  268.   for the account running lynx). - FM
  269. * Worked in stuff from 13-Jul-95 lynx2-4-1 upgrade.  Most had already been
  270.   added to lynx2-4-FM.  This is the new stuff. - FM:
  271. ---------------------------------------------------
  272.    07-13-95
  273. * Added some command line patches from Peter Brooks - CL:
  274.   (pbrooks@micromind.com).  The new command lines are:
  275.     -post_data, -get_data = send form data from stdin and dumps results.
  276.     -auth=ID:PASSWD = sets authorization stuff at startup.
  277.     -mime_header = prints mime header with -source.
  278.     -noredir = prevents automatic redirection
  279.     -error_file=file = prints HTTP status code to file.  (Not sure of
  280.         his motivation on this one, something to do with SlipKnot,
  281.         I think.)
  282.     (Replaced Peter's strdup()'s with more portable code. - FM)
  283.    07-11-95
  284. * Added Erik Olson's (olson@phys.washngton.edu) patch to use the 
  285.   _underline_ format when using the -dump option. - CL
  286.   (Kept the old code, #ifdef'ed out, to make this optional someday. - FM)
  287.    07-07-95
  288. * Fixed a bug in local_dired.  Specifically, a pointer to a fixed array
  289.   was being fed into StrAllocCopy as the destination. Linux was choking
  290.   on this although OSF/1 and AIX seemed to handle it better. - CL
  291. ---------------------------------------------------
  292. 07-15-95
  293. * If a command line "startfile" and/or -homepage is not a URL, and can't
  294.   be located as a file or directory on the local system, treat it as an
  295.   http URL, e.g., www.wfeb.edu will be treated as http://www.wfeb.edu - FM
  296. 07-13-95
  297. * Added nntp URL handling (nntp://news_host[:port]/path).  Made it read
  298.   access only (use news URLs for both read and post access). - FM
  299. 07-12-95
  300. * Added code for proxying https and snews URLs.  The Netsite proxy server
  301.   can proxy them without need for SSL code in the clients themselves, i.e.,
  302.   for Lynx as publically distributed (need client-resident SSL code and
  303.   tunneling for the CERN proxy server, sorry). - FM
  304. * Added the CONNECT protocol to our local code, so that SSL URLs can be
  305.   tunneled through proxy servers, and reorganized some code so that patches
  306.   for the SSL hooks can be applied easily if NSA regulations are relaxed. - FM
  307. 07-11-95
  308. * More tweaks of alignment code. - FM
  309. * Fixed bad code for removing trailing white space in GridText.c, LYrcFile.c,
  310.   LYReadCFG.c and LYUtils.c. - FM
  311. * Added snews and nttp protocols, which simply inform the user that they
  312.   aren't implemented. - FM
  313. * The claim is that even mere hooks to the RSA and SSL libraries are
  314.   objectionable to the NSA, so I removed then from the public distribution,
  315.   but left in the https protocol, which simply informs the user that it
  316.   isn't implemented. - FM
  317. 07-08-95
  318. * Worked in Lou Montulli's (montulli@netscape.com) code for https URL
  319.   handling into the Common Library.  To actually use it, you have to
  320.   get the RSA and SSL libraries, which are restricted to US citizens
  321.   (it works if you are and do 8-).  I can't include those in this
  322.   distribution, because by US law that would in turn restrict it to
  323.   US citizens. - FM
  324. * Tweaks of paragraph alignment code. - FM
  325. 07-07-95
  326. * If we are not allowed to change the status of the "lynxexec
  327.   execution of links" from the option screen then we shouldn't be
  328.   allowed to change it from the .lynxrc file either. - GL
  329. * Added George Lindholm's patch to add uudecode support to Lynx's file
  330.   manager.  Unfortunately, uudecode puts the uudecoded file in the
  331.   current working directory, namely the directory where lynx is started.
  332.   I haven't thought of a workaround yet, so I made lynx print a
  333.   statusline message informing the user. - CL
  334. 07-06-95
  335. * Modified redirection-handling code in HTTP.c to ensure that we get all of
  336.   the headers before trying to track down the Location: header. - FM
  337. * For move's or rename's in the local DIRED code, don't write the new file
  338.   name into the same buffer as the old. - Earl Fogel (fogel@duke.usask.ca)
  339. 07-05-95
  340. * Added GL's mods to use a stream-based procedure for displaying the
  341.   current Lynx keymap.  Faster and more efficient than the temporary
  342.   file-based procedure. - FM
  343. 07-04-95 (Enjoy the fireworks!!!  8-)
  344. * More mods of SGML/HTML parsing to help recover from bad HTML. - FM
  345. * Fixed some cryptic initialization problems in the Common Library's
  346.   centering and right alignment code, that we're now using, by changing
  347.   the malloc's in HTChunk.c to calloc's. - FM
  348. * Secured some unsafe code in the LYstrncpy() function. - FM
  349. * Increased the connect() and select() while()-looping limit in HTTCP.c
  350.   to 30,000 tries. - FM
  351. * Tweak of HR WIDTH attribute handling. - FM
  352. 07-03-95
  353. * Updated the DTD structures and definitions for HR to HTML 3.0, plus
  354.   its Netscape WIDTH and SIZE attributes, and implemented WIDTH, e.g.,
  355.   <HR WIDTH="50%"> yields a centered horizontal rule half the width
  356.   between the current left and right margins. - FM
  357. * Fixed problem of header end tags not yielding line breaks when embedded
  358.   in CENTER, LEFT or RIGHT tags. - FM
  359. 07-02-95
  360. * Added MAKE_PSEUDO_ALTS_FOR_INLINES in userdefs.h and lynx.cfg which can
  361.   be defined FALSE to treat inlines without an ALT string as having ALT=""
  362.   instead of inserting the pseudo-ALT string "[INLINE]" into the document.
  363.   The configuration file default can be toggled via a -pseudo_inlines
  364.   command line switch, and the user can toggle the inclusion of pseudo-ALT
  365.   strings on or off at run time via LYK_INLINE_TOGGLE (mapped by default
  366.   to '['). - FM
  367. * Made the -image_links command line switch a toggle for the configuration
  368.   file default setting. - FM
  369. * Enabled processing of forms that use TABLE for formatting.  I don't see any
  370.   risk of crashes, and they might end up usable.  Messages warn the user that
  371.   the display of the form may be strange. - FM
  372. * Relaxed anti-crash protections for forms with bad HTML (usually due
  373.   to interdigitated instead of embedded tags, written by providers with
  374.   Netscape or Mosaic clients, which are insensitive to such fundamentally
  375.   bad HTML).  I got the code to still work with several bad forms on the
  376.   Net, and if a crash should occur, the user has been tipped off via the
  377.   statusline or trace message about the nature of the problem. - FM
  378. 07-01-95
  379. * Restored the meaning of the P element to be the beginning of a paragraph,
  380.   updated its structures and definitions in the DTD to HTML 3.0, and
  381.   implemented its ALIGN attribute (left, center, right).  Note that it
  382.   no longer forces double spacing (you'll get the spacing defined in
  383.   the stylesheet for the current element, which may or may not be
  384.   double) and empty paragraphs (serial Ps) will not yield additional
  385.   newlines (use serial BRs for that). - FM
  386. * If both download options and disk saves are restricted, don't fetch
  387.   binary files with a download offer when their links are activated
  388.   (just issue a statusline message that the file can't be displayed),
  389.   and issue a "disabled" statusline message for any overt 'd'ownload
  390.   attemps. - FM
  391. * For disk saves in LYDownload.c, on VMS attempt a rename() first, and then
  392.   a spawned DCL copy if that fails. - FM
  393. * Added memory exhaustion checks for all mallocs, reallocs and callocs in
  394.   the LYfoo modules. - FM
  395. * Added CL's realloc() substitute for AIX and ultrix in GridText.c. - FM
  396. * Map extensions .html3 and .ht3 to text/html in HTInit.c. - FM
  397. 06-29-95
  398. * Added code to enable creation of links for all images.  Can be made the
  399.   default by setting MAKE_LINKS_FOR_ALL_IMAGES to TRUE in userdefs.h and/or
  400.   lynx.cfg (not advised).  Can be implemented for the session via a command
  401.   line switch, -image_links, e.g., use  lynx -dump -image_links  to get links
  402.   for all images, as well as standard links, listed in the output.  Can be
  403.   toggled on and off at run time via LYK_IMAGE_TOGGLE (mapped by default to
  404.   '*').  Use that in conjuction with the LYK_LIST command to get a list of
  405.   links that includes all images, e.g., for adding them as bookmarks.  The
  406.   toggle also invokes a reload, so that the change will be implemented for
  407.   the current and any future documents, but if you return to cached
  408.   documents, those will need to be reloaded explicitly.  See comments in
  409.   userdefs.h and lynx.cfg for more information. - FM
  410. * Don't restrict use of Control-T for toggling trace mode to advanced
  411.   usermode (i.e., make it available in all usermodes, so people might
  412.   follow the instructions in "BAD HTML" statusline messages to check
  413.   the document in trace mode). - FM
  414. * Modified LYList.c to indicate the anchor NAME/ID, if present, following
  415.   the TITLE, if known, in interactive 'l'ists.
  416. * Modified SGML.c to treat '>' as both a close-double-quote and close-tag.
  417.   Now Lynx acts like Netscape, in that respect, so all that bad HTML
  418.   Netscape users are generating will not bother Lynx. - FM
  419. 06-28-95
  420. * Oops, missed an initialization in this morning's centering and right
  421.   alignment mods. - FM
  422. * Fixed up HTML.c to bypass HTML 3.0 attribute checks for start tags generated
  423.   by the Common Library's non-http access types (gopher, ftp, news, wais)
  424.   Could crash, otherwise.  - FM
  425. * Fixed up GridText.c code to take non-printing control characters properly
  426.   into account when formatting centered or right-aligned text. - FM
  427. * Mods to improve appropriate carryover or cancelling of alignment attributes
  428.   across successive elements. - FM
  429. * Implemented Netscape LEFT and RIGHT extensions, homologously to CENTER. - FM
  430. * Implemented Netscape BLINK extension as HT_UNDERLINE. - FM
  431. 06-26-95
  432. * Updated the DTD structures and definitions for H1 - H6 to HTML 3.0 and
  433.   implemented their ALIGN attribute (left, right and center). - FM
  434. * Implemented the Netscape CENTER extension. - FM
  435. 06-25-95
  436. * Updated the DTD structures and definitions for FORM, INPUT, TEXTAREA,
  437.   SELECT and OPTION to HTML 3.0. - FM
  438. * Implemented the HTML 3.0 DISABLED attribute for FORM elements. - FM
  439. * INPUT type "scribble" implemented as "text" according to the HTML 3.0
  440.   recommendation for non-GUI clients. - FM
  441. * Added protections against problems with INPUT types "range" and "file"
  442.   until they're implemented (will be tricky, but do-able 8-). - FM
  443. 06-23-95
  444. * Added all ISO8859-1 entities to the DTD. - FM
  445. 06-22-95
  446. * Updated the DTD structures and definitions for A and IMG to HTML 3.0, and
  447.   implemented their ID attribute. - FM
  448. * Tweaks of FIG handling. - FM
  449. * It is somehow inappropriate to teach our users to write correct HTML and
  450.   to tell them to always check it before publishing, when Lynx's on-line
  451.   help gives such a bad example :-} (not to mention versions from a couple
  452.   of months back).  Better now. - Mark Martinec (Mark.Martinec@nsc.ijs.si)
  453. 06-20-95
  454. * Made the DTD structures and definitions for the HTML 3.0 elements
  455.   BQ, CAPTION, CREDIT, FIG, NOTE and OVERLAY complete, and added
  456.   those for STYLE, TABLE, TD, TH and TR.
  457. * Tweaks of yesterday's HTML 3.0 additions (still just "first pass"). - FM
  458. * Added code for avoiding potential problems with stylesheets and tables
  459.   in HTML 3.0 documents. - FM
  460. 06-19-95
  461. * Added "first pass" handling of HTML 3.0 elements BQ, CAPTION, CREDIT,
  462.   FIG, NOTE and OVERLAY. - FM
  463. 06-17-95
  464. * Close the configuration file on completion of the big while() in
  465.   LYReadCFG.c. - PM
  466. * Added 00DIFFERENT to keep track of files in this code set which
  467.   presently differ from those in the latest development code set
  468.   at UKans (currently, lynx2-4-1.zip of 15-Jun-95). - FM
  469. * Tweak of the pseudo-toolbar code.  The 'l'ist command now displays the
  470.   TITLE (or RelValue, if TITLE is defaulted) of those links if they have
  471.   never been accessed, or their actual HTML titles if accessed, at the
  472.   top of the links list, so you can use that command instead of LYK_HOME
  473.   to reach the toolbar links at any time, and then left-arrow to where
  474.   you were in the current document instead of having to page back down
  475.   to that location. - FM
  476. 06-16-95
  477. * Added <LINK REL="RelValue" HREF="foo" TITLE="TitleValue"> HTML 3.0
  478.   handling (as in http://www.hpl.hp.co.uk/people/dsr/html3/dochead.html
  479.   of 28-Mar-95).  The HREF and REL values are required (the LINK will be
  480.   ignored if either is missing or has a zero-length value). TITLE is
  481.   optional, i.e., the RelValue will be used as the link name if TITLE
  482.   is omitted.  Currently registered toolbar RelValues are:  Home, ToC,
  483.   Index, Glossary, Copyright, Up, Next, Previous, Help, and Bookmark.
  484.   The Bookmark links are intended to have TITLEs (e.g., "Order Form").
  485.   The others have RelValues that yield self-evident link names.  The LINKs
  486.   should be placed in the HEAD section, so they'll be displayed in a manner
  487.   simulating a toolbar (but not a real one, since we don't have Windows and
  488.   mouse support; use your LYK_HOME command to access it at any time 8-).
  489.   The BODY should have a line-breaking element (e.g, H1) to set them off.
  490.   For now, the Banner RelValue is treated like another toolbar element.
  491.   The StyleSheet RelValue is ignored, since we don't yet have loadable
  492.   stylesheet handling. - FM
  493. * Fixed up the 06-13-95 NO_ANONYMOUS_EMAIL patch to be appropriate for
  494.   VMS - FM.
  495. 06-14-95
  496. * Added LYK_LIST command ('l' or 'L'; must be uppercase if VI keys are on)
  497.   for creating an ACTIVATEable list of references (links) in the current
  498.   document.  If LINKS_ARE_NUMBERED is on, it's a UL, otherwise it's an
  499.   OL.  Visited links have the TITLE displayed, otherwise the HREF is
  500.   displayed. - FM
  501. * Added code to append a list of references (links), if present in the
  502.   document, when -dump is used.  Dumps are done with LINKS_ARE_NUMBERED
  503.   turned on.  The reference list is numbered, and always shows the HREFs,
  504.   so that they can be referenced to the links in the document. - FM
  505. * Updated help files. - FM
  506. --- lynx2-4-1 on ftp2.cc.ukans.edu (added to lynx2-4-FM on 06-16-95)
  507. 06-13-95
  508. * Added George Lindholm's patch to add -r (recurse) to the zip call in DIRED.
  509.   - JP
  510. 06-12-95
  511. * Added George Lindholm's new file permission patch.  Here's his description:
  512.   "Here is a rewamped version of my earlier file permission patch. This version
  513.    uses a html page to prompt for user input (rather than having the user
  514.    enter a obscure unix chmod string) using checkboxes." - JP
  515. * Added George Lindholm's addition of a compiler flag (NO_ANONYMOUS_EMAIL).
  516.   If NO_ANONYMOUS_EMAIL is set the user will not be able to add their own
  517.   from header.  This will only work if the mail package being used will
  518.   add this information. - JP
  519. --- lynx2-4-1 on ftp2.cc.ukans.edu
  520. 06-09-95
  521. * Replaced info.cern.ch with www.w3.org in html and make files.  Designated
  522.   this code as 2.4-FM, for local use. - FM
  523. --- STARTING  2.4-FM ---
  524. ==============================================================================
  525. 06-08-95
  526. * All of the changes from lynx2-3-FM are now located at ftp2.cc.ukans.edu.
  527.   We will call this version lynx2-4 and all new changes will be added here.
  528.   - JP
  529. 06-05-95
  530. * Added isc support based on post to lynx-dev from Ami Fischman
  531.   (a540ami@pic.ucla.edu). - FM
  532. 06-04-95
  533. * Initialize t1->name before the StrAllocCopy() in LYMainLoop.c for
  534.   DIRED_SUPPORT tagging. - Rick Mallett (rmallett@ccs.carleton.ca)
  535. * Don't bother creating a /tmp copy of local files for downloading
  536.   under the DIRED_SUPPORT, and don't include "Save to disk" in the
  537.   download menu for such files. - RM
  538. * Deal with any newlines or tabs in statusline messages, along lines
  539.   in patch from Peter Marquardt. - FM
  540. * Various fixes to ensure terminations of strings, along lines suggested
  541.   by PM. - FM
  542. * Made HTAlert messages more readable in trace mode.
  543. * Replaced info.cern.ch with www.w3.org in userdefs.h and lynx.cfg. - GL
  544. * Allow definition of the global configuration file (lynx.cfg) path and
  545.   name via a "LYNX_CFG" VMS logical or Unix environment variable.  Will
  546.   override the "LYNX_CFG_FILE" definition in userdefs.h.  The -cfg command
  547.   line switch will override those.  SYS$LOGIN (VMS) or '~' (Unix) can be
  548.   used in the path to treat the global configuration file as a personal
  549.   configuration file ($HOME will be substituted for '~'). Meets objective
  550.   in patch posted by Danny Meyer (mayer@ljsrv2.enet.dec.com) but does
  551.   not seek lynx.cfg in the user's HOME directory without an explicit
  552.   directive to do so.  Issue a screen message and then exit if the
  553.   configuration file is not readeable (rather than continuing as if
  554.   one had been found and read). - FM
  555. * Added protections from NAMEless INPUT or TEXTAREA tags. - FM
  556. 05-29-95
  557. * Changed close(*s) typo in HTTCP.c to NETCLOSE(*s).  Caused tight loops if
  558.   on error *s became stdin. - Peter_Marquardt (wwwutz@cha01.tfh-berlin.de)
  559. 05-20-95
  560. * Mods of proxying/gatewaying code, replace obsolete info.cern.ch default
  561.   URL addresses with www.w3.org, and add option to use the new www.w3.org
  562.   wais search gateway in cover page for wais searches. - FM
  563. 05-10-95
  564. * If a startfile specified on the command line maps to a MIME type
  565.   which invokes an alternate display device, allow -homepage, if also
  566.   specified, to be substituted for startfile on quiting from the display
  567.   device, rather than forcing an exit due to the original startfile having
  568.   been neither text/html nor text/plain.  Based on a patch from GL, with
  569.   protections against possible infinite getfile() loops added. - FM
  570. * Include -t switch when pico is the editor for reply_by_mail() in
  571.   LYMail.c. - GL
  572. 05-04-95
  573. * Oops.  Had zipped the wrong LYReadCFG.c in yesterday's mods. - FM
  574. 05-03-95
  575. * Do not override any external proxy and no_proxy variables with those
  576.   in lynx.cfg.  Bug fixes in code for setting proxy variables on Unix,
  577.   based on patches from Roman Czyborra (czyborra@cs.tu-berlin.de). - FM
  578. * Fixes for tagging when Lynx jumps to another screen and then comes back,
  579.   and deal with possibility of screen outputs from compress/decompress
  580.   utilities. - GL
  581. * Added support for Sequent's DYNIX/ptx operating system, and bug fixes
  582.   in HTTCP.c's BSDselect(). - Rodney Barnett (RBarnett@us.teltech.com)
  583. * Increased limits in select() loops to 5000 tries. - FM
  584. * Specify /nomember for compilations with DECC.  It's not the default
  585.   on AXP and the code assumes byte alignment. - FM
  586. 04-19-95
  587. * Added Alan Hirsh's script (LynxDir:VMSPrint.com) for dealing with busy
  588.   VMS print queues such that Lynx might otherwise delete the temporary
  589.   file before it has been queued for printing. - FM
  590. * Added lots of type casting to the mathematical operations in GridText.c
  591.   to minimize possible sizing/alignment problems for DECC/AXP (and any
  592.   Unix flavors that use the Alpha chip). - FM
  593. 04-17-95
  594. * Use  test=test -z "$LYNX_VERSION"  like  test=test -n "$LYNX_VERSION"
  595.   in mailcap files simply as flags for non-LYNX versus LYNX environment,
  596.   without actually bothering to execute a test. - FM
  597. * Issue "** Bad HTML!!!  Use -trace to diagnose. **" statusline messages
  598.   when bad HTML is encountered, and suppress those statusline messages in
  599.   favor of the TRACE messages when -trace is used. - FM
  600. * Fixed anchor deletion problem in yesterday's ISMAP mods. - FM
  601. * Removed -ltermcap from AIX makes (AIX doesn't use it). - FM
  602. 04-16-95
  603. * Send a 0,0 coordinate pair if a user clicks on an ISMAP link, so that
  604.   it's handled equivalently to clicks on an ISMAP submit button, and
  605.   (typically) will return the server's default.  Note that the default
  606.   often is the parent document, and if so, the current document will
  607.   be returned via redirection (pointlessly 8-).  However, this mod
  608.   allows the WebMaster to use a pure-text document as the default for
  609.   Lynx. - FM
  610. * Protections against crashes for inappropriately positioned form tags. - FM
  611. * Fixes in handling of configurable INEWS path. - FM
  612. * Support for VT500 series terminals. - George Cook (cook@wvnvaxa.wvnet.edu)
  613. 04-12-95
  614. * Makefile tweaks for bsdi and aix4. - FM
  615. 04-11-95
  616. * Mods for building with BSD Interative (bsdi). - FM
  617. 04-08-95
  618. * Added translation of HTML entities and decimal escaping for the
  619.   VALUEs of INPUT and OPTION tags. - FM
  620. * For TYPE="image" INPUT tags, use "[IMAGE]-Submit" as a pseudo-ALT
  621.   string, and submit a 0,0 coordinate pair if it's clicked, which
  622.   typically will invoke the server's default (I guess something is
  623.   better than nothing. 8-). - FM
  624. * Handle (possibly multiple) angle brackets in bookmark and showinfo
  625.   link names. - FM
  626. * Fixed typo in for-ultrix code in LYMain.c. - FM
  627. 04-04-95
  628. * Added ability to set proxy environment variables via lynx.cfg. - FM
  629. 04-01-95
  630. * Added handling of the HTML 3.0 attributes for ISINDEX tags:
  631.       <ISINDEX HREF="reference" PROMPT="string">
  632.   The ACTION attribute didn't make it into HTML 2.0.  For now, we'll keep
  633.   supporting it in Lynx by treating it as a synonym for HREF. - FM
  634. 03-31-95
  635. * Mods for AIX v4.1.1 and addition of make aix4. - FM
  636. * Added prototype and extern declarations for BSDselect(). - FM
  637. * Fixed bugs in form_getstr() that could clobber the stack. - GL
  638. * Fixes for symlink handling. - GL
  639. * Made LYShowInfo.c aware of the setuid, setgid and sticky file modes,
  640.   and nicer mode display if the file doesn't have the read bit set. - GL
  641. 03-30-95
  642. * Fixed glitch in BASE tag handling. - FM
  643. 03-29-95
  644. * Initialize pointers in add_trusted() of LYGetFile.c before the
  645.   StrAllocCopy() calls. - FM
  646. 03-26-95
  647. * Miscellaneous TRACE and related messaging tweaks. - FM
  648. 03-24-95
  649. * Handle defaulted localhost in file BASE tags, and related tweaks of
  650.   defaulted localhost handling in file URLs. - FM
  651. * Use RM_PATH for both file and directory deletions with the DIRED_SUPPORT
  652.   remove function. - GL
  653. --- STARTING  2.3-FM ---
  654. ==============================================================================
  655. 03-23-95
  656. * Designate this code set as lynx2-3-FM to avoid any confusion with the
  657.   official releases at UKans. - FM
  658. * Tweaks of code for defaulted localhost in file URLs.  Don't require
  659.   any host field marker in such URLs - FM
  660. 03-21-95
  661. * Added handling of defaulted localhost in file URLs. - FM
  662. * More protections against bad HTML. - FM
  663. * SYSLOGing enhancements. - GL
  664. * Suspend curses during my_spawn()'s, and fixes of code for the child
  665.   and error return detection. - GL
  666. 03-20-95
  667. * More protections against potentially infinite loops. - FM
  668. 03-16-95
  669. * Enhancements of 'c'omment and mailto handling. - FM
  670. * Mods to build.com for enabling submission to BATCH. - FM
  671. * Ultrix terminal-handling fix. - Roman Czyborra (czyborra@cs.tu-berlin.de)
  672. 03-15-95
  673. * Fixed bug in for-Unix directory listing code to screen out inaccessible
  674.   parent directories.  Was also being applied to ftp listings. - FM
  675. * Made bolding of H1 through H7 headers a lynx.cfg option, with the
  676.   non-bolding as the compilation default. - FM
  677. 03-13-95
  678. * Fixed bug in setting link[].lname elements to empty strings for form
  679.   INPUT_ANCHORs.  Was causing showinfo() to report the links from the
  680.   previous document (yet another memory leak bites the dust 8-). - FM
  681. * Numerous fixups of bold and underline handling. - FM
  682. 03-09-95
  683. * Increased the while() loop limit for select() tries in HTTCP.c to 500. - FM
  684. * Memory allocation/free fixes in HTAccess.c. - FM
  685. * Makefile and documentation tweaks. - FM
  686. 03-07-95
  687. * Implemented HT_BOLD when specified for headers in DefaultStyle.c.  H1 is
  688.   now uppercase, bold, and centered.  H2 - H7 are lower or mixed case, bold,
  689.   and progressively indented. - FM
  690. * Miscellaneous enhancements of menu displays. - FM
  691. * Allow tabs and '$' in lynxexec commands. - FM
  692. * More TOUPPER/TOLOWER fixes. - FM
  693. 03-06-95
  694. * Added ability to set the INEWS path in lynx.cfg. - FM
  695. 03-05-95
  696. * Separated the newspost URL into newspost versus newsreply, and modified
  697.   LYNews.c to behave more rationally for new versus followup posting. - FM
  698. * Added "mode reader" command for news list and article requests. - FM
  699. * Enabled saving of list_dir_style settings in the user's RC file. - FM
  700. * Don't restrict rearming SIGINT in LYClean.c for IGNORE_CTRL_C to just
  701.   SVR4. - FM
  702. * Added numerous protections against core_dumps/ACCVIOs in HTML.c for bad
  703.   HTML.  Should also help reduce likelihood of infinite while() loops and
  704.   a runaway CPU if binary files are mistyped and rendering is attempted. - FM
  705. * Added (unsigned char) type casts in addch() calls for proper handling of
  706.   high value ISOLATIN1 characters. - FM
  707. * Limited the while() loop for select()'s in HTTCP.c to 50 tries, to help
  708.   reduce likelyhood of a runaway CPU on undetected terminal disconnects. - FM
  709. * Fixed typo in build.com. - FM
  710. * Added Craig's lynx_help and about_lynx files for the lynx2-3-7 distribution,
  711.   updated for lynx2-3-9 BETA. - FM
  712. --- STARTING  2.3.9 BETA ---
  713. ==============================================================================
  714. 02-20-95
  715. * Updated doc files and passed on to UKans for archiving on the
  716.   ftp2.cc.ukans.edu server as 2.3.8 BETA. - FM
  717. 02-17-95
  718. * Further updates of building procedures for VMS. - FM
  719. * Further updates of lynx.man, lynx.hlp and documentation.  Indicate
  720.   that the inside_foo and outside_foo restrictions are not selective
  721.   on systems which lack utmp. - FM
  722. * Changed yesterday's DGUX define fo DGUX_OLD, because only older
  723.   Data General systems need it. - FM
  724. 02-16-95
  725. * Added Jeff's updates of lynx.man and lynx.hlp, further updated for
  726.   v2.3.8 - FM
  727. * Fixed typos in LYMail.c and HTTPC.c. - FM
  728. * Cleaned up #ifdef'ing for -DIGNORE_CTRL_C. - FM
  729. * Added -DDGUX for using inet_addr(host).s_addr instead of inet_addr(host)
  730.   in HTParseInet() of HTTCP.c (Data General may need it). - FM
  731. * Don't report "-help" as an invalid option. - FM
  732. 02-15-95
  733. * Handle HTML entities and decimal escaping in ALT strings. - FM
  734. * Build fixups for TCPWARE. - FM
  735. 02-14-95
  736. * Added transmission of Accept-Language headers.  A default preferred
  737.   language is defined in userdefs.h.  It can be overridden via lynx.cfg.
  738.   Users can change that via the 'o'ptions menu and save their preference
  739.   in their RC file. - FM
  740. * Tweak of FIXED record handling on VMS. - FM
  741. * Defined Unix ZIP_PATH and UNZIP_PATH in userdefs.h. - FM
  742. 02-12-95
  743. * Added  -localhost  switch for restricting access to files and servers
  744.   on the local host. - FM
  745. * Added  -nobrowse   switch for disabling directory browsing. - FM
  746. * Added  -selective  switch for requiring a .www_browsable file in
  747.   each directory for browsing access to it.  The enabling files
  748.   are not included in the directory listings. - FM
  749. * Fixed up displaying of README files in directory listings on
  750.   VMS. - FM
  751. * Replaced all tolower() and toupper() calls with the TOUPPER() and
  752.   TOLOWER() macros in HTUtils.h (should help deal with some of the
  753.   strange behavior reported for some flavors of Unix; see header of
  754.   HTUtils.h). - FM
  755. Worked in mods from David Trueman (david@cs.dal.ca) - FM:
  756. * Don't issue the ../ link in Unix local directory listings if the parent
  757.   directory is not readable (was already dealt with on VMS - FM).
  758. * Include an Organization: header in Unix news postings, if possible
  759.   (was already dealt with on VMS - FM).
  760. * Don't allow the editing of Unix mail headers because that is error
  761.   prone (no change on VMS; editable pseudo-headers are included for
  762.   informational purposes, but the real headers are those of the
  763.   account running Lynx - FM).
  764. * Don't hardcode the Unix mv command; use MV_PATH define in userdefs.h.
  765. * Moved the Unix COPY_COMAND define to userdefs.h as COPY_PATH.
  766. * Completed the Unix ZIP support.
  767. 02-10-95
  768. * Added code for converting the headers of downloaded binaries on VMS
  769.   to indicate FIXED 512 record format.  See the documentation in
  770.   userdefs.h, lynx.cfg and FIXED512.COM for more information. - FM
  771. 02-08-95
  772. * Fixed glitch in HTInit.c which mis-casted the default MIME type for
  773.   files with a .sh extension, causing the EXEC_SCRIPT function to be
  774.   disfunctional. - FM
  775. * I think I finally have Lynx showing "(p# of N)" properly in the title
  776.   lines (we'll see if perfection has really been achieved 8-). - FM
  777. * Extended directory browsing on VMS to the -homepage specification,
  778.   if included on the command line, e.g., lynx -homepage=sys$login
  779.   will start up Lynx with the default startfile, but the 'm'ain menu
  780.   command will yield listings of the home directory. - FM
  781. * Added -fileversions switch on VMS for including all versions of files
  782.   in directory browser listings (otherwise, only the highest version is
  783.   listed, with no version numbers displayed). - FM
  784. * Modified LYEdit.c to use fopen(filename,"a") instead of access(filename,2)
  785.   to verify write access for editing files (checking "append" access appears
  786.   to be a more reliable way to do it across platforms/flavors). - FM
  787. 02-07-95
  788. * Implemented directory browsing for VMS. - FM
  789. * Fixed printer command handling to actually prompt for and use a second
  790.   filename argument if two "%s" strings are in the command map. - FM
  791. * Added anti-Unix-shell-spoofing code for all of the filename argument
  792.   handling. - FM
  793. * Fixed glitch in getenv(DISPLAY) calls on VMS.
  794. 02-04-95
  795. * Fixed a glitch in BASE support.  Should now work properly when both
  796.   standard and Lynx-specific hrefs are in the document. - FM
  797. 02-03-95
  798. * Added support for posting to newsgroups from Lynx on VMS via the
  799.   ANU-NEWS software. - FM
  800. * Numerous href parsing enhancements. - FM
  801. * Enhancements and bug fixes of news displays. - FM
  802. * Enabled display of Linknames with angle brackets (as for news URLs)
  803.   in the showinfo page. - FM
  804. * Ensured that a file URL which is really an ftp URL will yield an
  805.   "FTP is Disabled" statusline message when it's disabled. - FM
  806. 02-01-95
  807. * Defined out the LYK_VERSION code and made Control-V a dead key again,
  808.   since including the Lynx name and version strings in the showinfo ('=')
  809.   and 'o'ptions displays is adequate, and people on different platforms
  810.   or flavors associate Control-V with other functions. - FM
  811. 01-31-95
  812. * Beefed up the BASE support. - FM
  813. * Made all WWWLib cover pages and menus HTTP/1.0 compliant (to ensure
  814.   resetting of any BASE tags) and gave them more pizzaz. - FM
  815. * Trim terminal slashes in ftp paths if not the Welcome directory, so
  816.   we'll get "Up to" links.  Terminal slashes in file paths still force
  817.   that directory to be treated as the Welcome directory.  For example,
  818.    ftp://host/blah/foo/ will have an "Up to blah" link listed, but
  819.   file://host/blah/foo/ will treat /blah/foo/ as "Welcome" (both ftp
  820.   and file "Up to" links are blocked by -DNO_PARENT_DIR_REFERENCE). - FM
  821. * The VMS SOCKETSHR_TCP support can't yet handle telnet, tn3270 or
  822.   rlogin URL's (Andy Harper is working on it; be patient 8-).  Modified
  823.   HTTelnet.c to compile properly and behave rationally when such URL's
  824.   aren't supported. - FM
  825. * Corrected doc files based on Larry Virden's (lvirden@cas.org) careful
  826.   (or is it carefull) proof-reading.  Thanks Larry! - FM
  827. * More type casts for ANSI C compliance. - FM
  828. 01-30-95
  829. * Added numerous type casts for ANSI C compliance. - FM
  830. 01-29-95
  831. * Prototyped HTHostName() for yesterday's mods in HTAccess.c. - FM
  832. * Updated lynx.cfg. - FM
  833. 01-28-95
  834. * Added lynx name and version to the showinfo page and options menu. - FM
  835. * Tweaked Danny's news proxying mods for selective no_proxy directives
  836.   with a port field (119) for news, and added equivalent code for wais
  837.   (port 210). - FM
  838. * Updated the INSTALLATION file (I hope people read it 8-). - FM
  839. * Hadn't included last night's typo fix in the archived fileset. - FM
  840. 01-27-95
  841. * Added Danny Mayer's (mayer@ljo.dec.com) mods for proper handling of
  842.   no_proxy directives for news (NNTPSERVER) hosts. - FM
  843. * Worked in Ari Luotonen's (luotonen@dxcern.cern.ch) mods for sending
  844.   a "Pragma: no-cache" header for use by a proxy server in conjunction
  845.   with the RELOAD command. - FM
  846. * Fixed to handle file URL's appropriately in conjunction with proxying
  847.   of ftp URL's.  For file URL's on the local host, direct access is
  848.   attempted, with no ftp attempt if that fails, whether or not proxying
  849.   is in effect, and whether or not no_proxy directives have been set.
  850.   Both ftp URL's, and file URL's on a remote host, are sought via ftp
  851.   without a direct access attempt.  File URL's for remote hosts are
  852.   converted to ftp URL's before submission to a proxy server, so no
  853.   special procedure need be implemented to induce the proxy server to
  854.   act on them (You shouldn't continue using file URL's when you intend
  855.   ftp, but Lynx will handle such URL's properly when encountered in
  856.   old documents that use file when ftp is intended.) - FM
  857. * Fixed typo in yesterday's "psychotherapy". - FM
  858. 01-26-95
  859. * Escaping of ISINDEX queries needed more tweaks to work properly with
  860.   high value IsoLatin1 characters. - FM
  861. * Applied psychotherapy to the schizophrenic behavior that was exhibited
  862.   when download, upload, print, history or showinfo commands were used
  863.   during displays of each other's menus or temporary files. - FM
  864. * Enabled downloading of links from the history page. - FM
  865. 01-25-95
  866. * Added LYK_VERSION command (^V) for showing version of Lynx. - FM
  867. * Include file fixes for TCPWARE. - FM
  868. * Fixed bug in showinfo() which caused core dumps when invoked while
  869.   positioned on any form field which has a "linkname" but a NULL
  870.   "filename". - FM
  871. * Fixed glitch in 'p'rint menu. - FM
  872. 01-24-95
  873. * Enabled SOCKSification for any Unix flavor via the SITE-LYDEFS,
  874.   SITE-DEFS and SOCKSLIB definitions in the top-level Makefile. Added
  875.   info in INSTALLATION on how to do it for VMS.  Included notes that you
  876.   are better off building Lynx normally, and instead using a SOCKSified
  877.   proxy server to get through a firewall. - FM
  878. * Added instructions in INSTALLATION for setting up proxy service. - FM
  879. * Fixed multiple submit button handling to distiguish which button was
  880.   activated when they have the same name, and include only that button's
  881.   name/value pair in the submission. - FM
  882. * Figured out how to apply all security and restrictions checks for
  883.   redirecting URLs returned by ISINDEX searches, and accordingly lifted
  884.   the bypasses for the previously insecure access types. - FM
  885. * Added option to use Jerry Whelan's (guru@bradley.edu) BSDselect() for
  886.   SVR4 systems with the "type any key" problem. - FM
  887. 01-23-95
  888. * Fixed up escaping of queries in HTSearch(). - FM
  889. * Updated the sample jumps files. - FM
  890. * Worked in socksification mods from Reese Ferry (reesef@VNET.IBM.COM) - FM
  891. * Enabled use of LOCALE for international characters with any Unix flavor
  892.   (not just sun) via a define in the top level Makefile. - FM
  893. 01-22-95
  894. * Updated the lynx.cfg configuration file. - FM
  895. * Implemented BASE handling. - FM
  896. 01-21-95
  897. * Fixed -cfg switch handling so that the specified, alternate configuration
  898.   file properly is read instead of the default system file specified in
  899.   userdefs.h. - FM
  900. * Made 'p'rint, 'd'ownload and 'u'pload menu lists single spaced. - FM
  901. * Fixed HTFileFormat() in HTFile.c so that it properly processes the
  902.   suffix-to-MIME-type mappings when version numbers are in local file
  903.   URLs on VMS.  We therefore no longer trim off the version number if
  904.   if was included, and Lynx will now access and process that version
  905.   rather than only the highest version. - FM
  906. 01-18-95
  907. * Makefile fixes for convex and linux. - FM
  908. 01-17-95
  909. * More Makefile fixes. - FM
  910. 01-14-95
  911. * Fixes for FreeBSD. - FM
  912. 01-12-95
  913. * Made the "ls -l" emulation in local directory listings a compilation
  914.   option (see the top level Makefile). - FM
  915. * Made inclusion of "Up to" parent links in local directory listings a
  916.   compilation option (see top level Makefile). - FM
  917. * Message fix for checkmail on Unix. - FM
  918. * Fixes for SCO with gcc. - FM
  919. 01-11-95
  920. * Restored original hash table function in HTAnchor.c without (hopefully 8-)
  921.   reviving anchor deletion problems. - FM
  922. * Fixed typo in HTAccess.c. - FM
  923. * Added code in HTFile.c from Timothy Newsham (newsham@aloha.net) for
  924.   generating long style Unix listings (ls -l). - FM
  925. 01-10-95
  926. * Escape dashes in lynx.man. - FM
  927. * Added NetBSD support from Bryan T. Vold (btv@wiley.HealthPartners.COM). - FM
  928. * Made anchor searches in hash tables case-sensitive (so paths which
  929.   differ only in their case can be distinguished, as people using the
  930.   DIRED support kept requesting) without (hopefully 8-) reviving anchor
  931.   deletion problems. - FM
  932. 01-09-95
  933. * More Makefile and code fixes for building properly with various systems
  934.   and compilers. - FM
  935. 01-06-95
  936. * Numerous fixes for handling signals (e.g., SIGWINCH) received during
  937.   keystroke fetches, without (hopefully 8-) reviving the problem of
  938.   runaway CPU's on undetected terminal disconnects. - FM
  939. * More Makefile and code fixes for building properly with various systems
  940.   and compilers. - FM
  941. 01-05-95
  942. * Changed define for syslog() logging to SYSLOG_REQUESTED_URLS and picked up
  943.   logging of ISINDEX search requests that don't go through getfile(). - FM
  944. * More fixes for redirection returned via ISINDEX searches. - FM
  945. * Fixed missing newline character at end of last .lynxrc entry. - FM
  946. * More Makefile tweaks. - FM
  947. * More additions in LYCurses.h for compilers which fail to check whether TRUE
  948.   and FALSE are already defined before defining them in <curses.h>. - FM
  949. 01-03-95
  950. * Fix for redirection returned via ISINDEX searches. - FM
  951. 12-29-94
  952. * Yet more top level Makefile tweaks. - FM
  953. * Fix bcopy problem for UCX. - Martin Zinser (zinser@vscn.gsi.de)
  954. * Fix ioctl() problem for UCX. - MZ
  955. 12-27-94
  956. * More top level Makefile tweaks. - FM
  957. 12-26-94
  958. * Added Lou Montulli's procedure for PURIFY to the top level Makefile. - FM
  959. 12-23-94
  960. * Added Lou Montulli's memory leak fixes. - FM
  961. * Fixed HTLoadedDocumentTitle() call in LYGetFile.c. - FM
  962. --- RELEASE of 2.3.8 BETA ---
  963. 12-22-94
  964. * The WFEB code as of 12-15-94 has been archived at UKans as lynx2-3-7,
  965.   so we'll make this lynx2-3-8 to avoid confusion. - FM
  966. * Added bookmark_exec restriction for disallowing use of lynxexec URL's
  967.   in the user's bookmark file or converted Mosaic hotlist. - FM
  968. * Enable any lynxexec URL in JUMPFILE if EXEC_LINKS has been defined.
  969.   This allows you to set both LOCAL_EXECUTION_LINKS_ON_BUT_NOT_REMOTE
  970.   to TRUE and a single TRUSTED_EXEC rule that will always fail (e.g.,
  971.   TRUSTED_EXEC:none), so that *ONLY* the lynxexec URL's in the jumps
  972.   file will be acted upon. - FM 
  973. * Disallow lynxexec URL's in G)oto if no_shell is set or if
  974.   LOCAL_EXECUTION_LINKS_ON_BUT_NOT_REMOTE is TRUE. - FM
  975. 12-21-94
  976. * Include LYFLAGS in the BSDI_Makefile. - FM
  977. * Numerous mods based on patches from David Trueman - FM:
  978. * Changed SUN4 ifdef for implementing the "reverse clear screen hack" to
  979.   REVERSE_CLEAR_SCREEN_PROBLEM since not all sun4 systems experience this
  980.   problem.
  981. * Changed a few messages to use key_for_func() instead of a hard-coded
  982.   key mapping.
  983. * Allow control-C as well as control-G to abort or cancel on Unix (as
  984.   already on VMS).  On VMS, control-C and control-Y evoke a "Do you really
  985.   want to quit?" prompt, and a 'n'o reply gets handled as if control-G
  986.   has been entered in the first place.  On Unix, control-C is treated
  987.   simply as a synonym for control-G, and control-Y is not an interrupt
  988.   signal.  This seems the best way to handle those control signals, based
  989.   on what VMSers versus Unixites would expect them to do.
  990. * Added code to disallow the writing of files beginning with a dot if
  991.   NO_DOT_FILES is set TRUE in userdefs.h and/or lynx.cfg.
  992. * Added possibility of logging URL access via syslog() on Unix (ifdef'd
  993.   with LOGGING).
  994. * Improved and made more flexible the security for lynxexec URL's.  The
  995.   default behaviour is the same as now, but source locations and the path 
  996.   (Unix) or name (VMS) of programs to be executed can be restricted via
  997.   TRUSTED_EXEC rules in the lynx.cfg file.
  998. * Convert ~ in lynxexec paths to $HOME on Unix.
  999. * Several changes in DIRED support.  Tidied and consolidated code.  Changed
  1000.   the way tags are freed (fixing a bug where they did not always get cleared
  1001.   properly).  Changed all programs to *_PATH defines.  Changed the display
  1002.   of tags so they work with numbered links.
  1003. * Added another restriction to disallow telnet port specifications in
  1004.   G)oto URL's.
  1005. * A bit of special case code in jump handling.  If key mapping is G, allow it
  1006.   to be typed as "go target".
  1007. * Change strncmp in remap() to strcmp() (bug fix).
  1008. * Report offending bad option in main().
  1009. * In mainloop(), make \r same as \t and \n.
  1010. * Combine LYK_REMOVE code with LYK_DEL_BOOKMARK so that they can share the
  1011.   same key map.
  1012. * If show_cursor is true, position cursor 1 position before the link, which
  1013.   makes it less likely that the link is obscured in defective terminal
  1014.   programs
  1015. 12-15-94
  1016. * More fixes in LYno_attr_char_case_strstr() and LYno_attr_char_strstr() - FM
  1017. * People didn't like having to erase the default WHEREIS ('/') search string
  1018.   when it wasn't what they wanted in a new document (though most didn't know
  1019.   that it can be done easily via ^U), and Lynx doesn't have real editing via
  1020.   LYgetstr() (just deletion from the end of the string), so I got rid of the
  1021.   the editing offer.  The previous search string is still buffered across
  1022.   document fetches, and can be used across documents via NEXT ('n').  You
  1023.   also can use WHEREIS without a search string entry to turn off highlighting
  1024.   within the current document, and then NEXT to restore it.  If control-G is
  1025.   used instead of a blank string to cancel a WHEREIS command, it does not
  1026.   turn off the highlighting.  So everything everyone asked for is now
  1027.   possible (once you figure out how to do it 8-). - FM
  1028. 12-14-94
  1029. * Oops!  Fixes in tcp.h for MULTINET with DECC/VAX had left SOCKET_ERRNO
  1030.   undefined for all the other VMS TCPIP packages.  That's what I get for
  1031.   working on this stuff too late at night. - FM
  1032. * Additional ANSI compliance fixes in HTTCP.c for builds with DECC/VAX and
  1033.   non-MULTINET VMS TCPIP packages. - FM
  1034. 12-13-94
  1035. * Modified searches for strings within the currently displayed document
  1036.   ('/', as opposed to 's' for ISINDEX searches) so that the highlighting of
  1037.   the search string is not retained when the current document is changed,
  1038.   and added recall buffering of the search string so that it's offered as
  1039.   the default for editing or reuse on subsequent '/' commands.  Also, we
  1040.   now force redraws on invokations of such searches so that hits will be
  1041.   highlighted even if they occur on the current page.  Links with hits such
  1042.   that they have embedded highlighting of the search strings will not have
  1043.   the embedded highlighting restored when the cursor is moved onto and then
  1044.   off of them (helps to distinguished whether it's intended or the due to
  1045.   the search), but will be restored whenever the page is redrawn.  All
  1046.   embedded highlighting also is restored when the 'n'ext command is used to
  1047.   repeat the search in the current document, even if the returned hits do not
  1048.   cause a page change.  Note that these searches first search only the links,
  1049.   and position you on the first link with a hit occurring after the current
  1050.   link.  If there were no hits in the links, then the text is searched and
  1051.   the first hit occurring after the current link is positioned at the top of
  1052.   the page.  They never did, and still do not, search both the link and text
  1053.   portions of the document simultaneously.  Also note that ISINDEX searches
  1054.   never have and still do not yield highlighting of the query string(s) in
  1055.   the returned document.
  1056. * Fixed LYno_attr_char_case_strstr() and LYno_attr_char_strstr() in
  1057.   HTStrings.c so that they properly ignore any attribute characters in
  1058.   the comparison string and return a pointer to the correct location
  1059.   of a match with the target string. - FM
  1060. 12-12-94
  1061. * Modified FTP gateway to display 230- as well as 250- information/help
  1062.   messages, and on non-Unix as well as Unix systems. - FM
  1063. --- RELEASE of 2.3.7 BETA ---
  1064. 12-11-94
  1065. * Further tweaked explanatory comments in the configuration and samples
  1066.   files, and updated the instruction files. - FM
  1067. 12-09-94
  1068. * Modifed PassesTest() in HTInit.c to avoid the overhead of system() calls
  1069.   by using getenv() when   test -n "$DISPLAY"   and   test -z "$DISPLAY" 
  1070.   commands are encountered in the mailcap file.  Otherwise, needlessly
  1071.   expensive system() calls potentially could be made for virtually every
  1072.   viewer mapping in that file!.  For Lynx, those two strings in the mailcap
  1073.   file now are equivalent to the :XWINDOWS and :NON_XWINDOWS flags,
  1074.   respectively, for VIEWER: assignments in lynx.cfg. - FM
  1075. * Also modified PassesTest() so that it simply treats  test -n "LYNX_VERSION"
  1076.   as success.  Why spawn a system() command to see if Lynx is running, when
  1077.   it obviously is!.  However, that string can be included in the mailcap
  1078.   file for assignments that should be restricted to Lynx if other software
  1079.   also uses the file. - FM
  1080. * The above two mods make it unnecessary to actually use a "test" script for
  1081.   differentially setting viewers in XWINDOWS versus NON_XWINDOWS environments,
  1082.   so VMSers also can use the mailcap files for differential assigments of
  1083.   viewers, without those DCL error messages about "test" which have been
  1084.   mystifying so many people.  However, yesterday's mods do make it possible
  1085.   for VMSers to use a "test" script for checking other environment or system
  1086.   features, and thereby setting viewer switches differentially, analogously
  1087.   to the command line switches for Lynx itself. - FM
  1088. * Modified comments in samples/mailcap to indicate these enhancements. - FM
  1089. * Modified comments in userdefs.h to describe correctly what the Lynx code
  1090.   does as of v2.3:  Any SUFFIX or VIEWER mappings in lynx.cfg will be
  1091.   overridden in src/HTInit.c if they also appear there.  Then, any mappings
  1092.   in mime.type or mailcap will override those from lynx.cfg and src/HTInit.c.
  1093.   The XLOADIMAGE definition is used in src/HTIinit.c, and you can use
  1094.   mailcap, but not lynx.cfg, to override it. - FM
  1095. * Modified comments in lynx.cfg and samples/lynx.cfg to indicate what Lynx
  1096.   really does, and the use of mailcap files to do what lynx.cfg had claimed
  1097.   it could do but doesn't. - FM
  1098. * Fully implemented multiple submit button support for both POST and GET
  1099.   forms. - FM
  1100. * Added LYK_RESUBMIT keymap (with default binding to 'x' and 'X') for forcing
  1101.   submissions of forms to servers (i.e., never use cache).  LYK_ACTIVATE
  1102.   (with default binding to right-arrow and <return>) still fetches from cache
  1103.   if available.  Statusline help describes these commands when positioned
  1104.   on a submit button. - FM  
  1105. 12-08-94
  1106. * Fixed HText_submitForm() in GridText.c to handle submitting INPUT types
  1107.   (e.g., type="image") which have name/value pairs. - FM
  1108. * Modified DCLspawn to recognize -1 on failure and 0 or 1 on success as
  1109.   return or exit values of scripts, and report -1 or 0 as it's own return
  1110.   value.  If a "test" script is used on VMS in conjunction with .mailcap
  1111.   for setting viewers, it should return -1 if the test fails and 0 or 1 if
  1112.   it passes (the "test" script can be DCL or an exectutable, and should be
  1113.   defined as a foreign command).  If you don't have a "test" script, don't
  1114.   include that instruction in .mailcap. - FM
  1115. * The tmpaddress pointer in do_www_search() of GridText.c needed to be
  1116.   initalized to NULL. - FM
  1117. 12-07-94
  1118. * Made sufficiently ANSI compliant to build with DECC on VMS without using
  1119.   the /stand=vaxc qualifier, and further modified so that Lynx will build
  1120.   and run (extremely well 8-) with DECC/VAX.  Whooh, that took some doing!
  1121.   These mods are also desireable for builds on Unix. - FM
  1122. 12-02-94
  1123. * Fixed the query recall buffer in do_www_search() of GridText.c to restore
  1124.   the +'s to spaces and unescape properly. - FM 
  1125. * Include file and define fix ups, for SOCKETSHR/NETLIB support and convex
  1126.   builds, in tcp.h, LYShowInfo.c and top level Makefile. - FM
  1127. 11-27-94
  1128. * Fixed bugs associated with failure to check the post_data element in
  1129.   addition to the address element when making push/pop decisions for the
  1130.   history stack, and when checking whether a requested document has been
  1131.   loaded successfully.  The address element is insufficient for documents
  1132.   returned by POST'ed forms. - FM
  1133. * Check -trace switch earlier in LYMain.c so that trace messages associated
  1134.   with setting up the Lynx configuration will actually be displayed. - GL
  1135. 11-23-94
  1136. * More fix ups for the SOCKETSHR/NETLIB support. Close to "all set" but needs
  1137.   more field testing with the full range of TCPIP packages for VMS. - FM
  1138. * Added HP_TERMINAL define for the DIM workaround to the REVERSE problem with
  1139.   HP terminals.  If not defined, SNAKE builds will not make that substitution
  1140.   (would be better to do this in a way that checks the terminal at run time,
  1141.   but we'll hold off on that for now). - FM
  1142. --- RELEASE of 2.3.6 BETA ---
  1143. 11-21-94
  1144. * Replaced <ucx$inetdef.h> with "socketshr_library:ioctl.h" for the
  1145.   SOCKETSHR_TCP builds.  Note that the ioctl.h is not presently included
  1146.   in the binary distribution of SOCKETSHR/NETLIB.  You have to get it from
  1147.   the sources distribution. - FM
  1148. 11-18-94
  1149. * Added Andy Harper's (A.Harper@bay.cc.kcl.ac.uk) "first round" support for
  1150.   SOCKETSHR/NETLIB (see SOCKETSHR.ANNOUNCE).  Note that it is presently
  1151.   including <ucx$inetdef.h> which is not provided with SOCKETSHR or NETLIB
  1152.   source sets, and may not be available to non-UCX sites.  We're checking
  1153.   into how to deal with that. - FM
  1154. * Made recall buffering of shortcuts for the 'J'ump command a configuration
  1155.   file option (in userdefs.h and/or lynx.cfg). - FM
  1156. * Added clearerr() before the GetChar() in LYStrings.c. - FM
  1157. * Made the optional novice help lines conform to the "standard default"
  1158.   key bindings.  Edit them appropriately in userdefs.h if you plan to use
  1159.   other bindings with that feature.
  1160. * Added George Lindholm's (lindholm@ucs.ubc.ca) Makefile patch for making it
  1161.   just a tad easier to set up local compile options. - FM
  1162. * Eliminated serial free() in LYSanctify() of LYGetFile.c. - FM
  1163. * Restricted all "hack to fix reverse clear screen problem" code to
  1164.   SUN4 (had missed one 8-). - FM
  1165. 11-15-94
  1166. * Eliminated separate list and atexit deletions of redirecting anchors. - FM
  1167. * Added Rick Dyson's (Dyson@IowaSP.Physics.UIowa.EDU) updates of the
  1168.   descrip.mms files. - FM
  1169. 11-12-94
  1170. * Worked in Malcolm MacArthur's (mcscs2mm@zippy.dct.ac.uk) mods for reading
  1171.   a printer's page length from the configuration file and calculating the
  1172.   correct number of pages for the statusline query on whether to continue
  1173.   if the document is longer than 4 printer pages.  Further modified that
  1174.   code to use the current LYlines for the computation when the built in
  1175.   "print to screen" option is selected.  See the comments concerning
  1176.   "PRINTER:" definitions in lynx.cfg for more information. - FM
  1177. * Fixed HTInetStatus() in HTTCP.c to use SOCKET_ERRNO instead of errno,
  1178.   based on the platform/transport-specific definitions in tcp.h.  Thanks
  1179.   to Danny Mayer (mayer@ljo.dec.com) for tracking down this glitch. - FM
  1180. 11-10-94
  1181. * Added David Trueman's latest clever enhancement:  The command line option
  1182.   -homepage=URL separates the notion of a home page (or main screen) from
  1183.   the start file.  So,  lynx -homepage=URL1 URL2  will start up with URL2
  1184.   but the MAIN_MENU key will take the user to URL1 rather than URL2.  This
  1185.   is useful for public accounts that start up with an information page or
  1186.   form, that then leads the user to a URL for the actual home page.  The
  1187.   MAIN_MENU key can thereafter be used whenever the user wishes to return
  1188.   to the actual home page. - FM
  1189. * Enlarged string buffer in LYEdit.c to handle large paths. - FM
  1190. * Made 'K'eymap title and descriptions easier to edit for alternate languages
  1191.   (e.g., Dutch or Greek) as required by Dick Wesseling (but, alas, the editing
  1192.   still has to be done in LYKeymap.c, because it's too much to move into
  1193.   userdefs.h; someday Lynx will have real internationalization code 8-) - FM
  1194. * Added titles to tops of jumps files so that the nesting level will be reset
  1195.   on reloads. - FM
  1196. 11-09-94
  1197. * More prototyping and include file fixes in LYJump.c and LYMainLoop.c - FM
  1198. 11-08-94
  1199. * Prototyping fix in LYJump.c. - FM
  1200. * Miscellaneous fixes in src/descrip.mms. - FM
  1201. * Hadn't included patch for latest LYUtils.c in lynx2-3-5.patches. - FM
  1202. 11-07-94
  1203. * At popular request (already 8-), changed the "Jump to:" query to work
  1204.   exactly like the "goto:" query.  The previous entry is recalled, a '?'
  1205.   must be entered explicitly to fetch the shortcut list (with an instruction
  1206.   about that added to the prompt), and a blank entry or Control-G returns
  1207.   the user to the current document. - FM
  1208. --- RELEASE of 2.3.5 BETA ---
  1209. 11-05-94
  1210. * Numerous wonderful enhancements based on patches from David Trueman, and
  1211.   entensions of those mods.  Briefly:
  1212. * Implemented 'K'eymap command for showing all of the key bindings currently
  1213.   in effect, with a description of their functions.  This is faster and
  1214.   more helpful than the online help's description of the default key
  1215.   bindings.  Must be uppercase 'K' if VI keys are ON, otherwise the command
  1216.   is case-insensitive.  Try it, you'll love it! - FM
  1217. * Implemented 'J'ump command for using "shortcut" names to access URL's in a
  1218.   local "jumps.html" file that has a sorted <DL> list which maps each target
  1219.   (shortcut) <DT> to it's full URL <DD> (see the sample jumps files added to
  1220.   the distribution).  The URL's could be local or remote resources, or
  1221.   lynxexec or launch file URL's for system utilities (e.g., the shortcut
  1222.   "news" could invoke the news reader, "mail" the mail utility, "swing" the
  1223.   VMS File/Directory Management Utility, etc.).  This feature is enabled by
  1224.   defining JUMPFILE in userdefs.h or lynx.cfg, and can be disabled via at
  1225.   run time via -restrictions=jump as a commandline switch.  Must be uppercase
  1226.   'J' if VI keys are ON, otherwise the command is case-insensitive.  Try it,
  1227.   you'll love this too! - FM
  1228. * Added a CHECKMAIL symbol which if set TRUE in userdefs.h or lynx.cfg will
  1229.   report the existance of unread mail at Lynx startup, and arrivals of new
  1230.   mail, via statusline messages.  VMSers can block unsoliticed system NEWMAIL
  1231.   screen broadcasts ($ SET BROADCAST/NOMAIL) when using this feature.  It
  1232.   can be disabled at run time via the -restrictions=mail switch, which also
  1233.   disables standard mail functions in Lynx, but still allows 'J'umps via a
  1234.   "mail" shortcut to a lynxexec URL for a script which could perform security
  1235.   functions before permitting or rejecting access to the mail utility.  The
  1236.   hackers will really love this! - FM
  1237. * Added ability to toggle the novice help line to show all of the principle
  1238.   commands. - FM
  1239. * Miscellanous bugs and memory leaks found and fixed in conjuction with
  1240.   adding and enhancing the above features. - FM
  1241. * The code may need some tweaking to build and run properly on some flavors
  1242.   of Unix (appears to be all set for VMS). - FM
  1243. 11-01-94
  1244. * Fixed bug if editor is dereferenced. - David Trueman (david@cs.dal.ca)
  1245. * Enable alternate boxing of popup windows via defines for BOXVERT and
  1246.   BOXHORI in userdefs.h - Dick Wesseling (ftu@fi.ruu.nl)
  1247. * Check for LYCursesON before making any Curses calls in cleanup() - DW
  1248. 10-31-94
  1249. * Looks like the last of the problems deleting anchors has been solved
  1250.   by Dick Wasseling, so the bypass is lifted again. - FM
  1251. * If CANT_EDIT_UNWRITABLE_FILES is defined on Unix, write access is
  1252.   required to edit files (write and delete access are always required
  1253.   on VMS). - Alex Whittaker (alex@biu.icnet.uk)
  1254. * Moved "Press <return> ..." text to userdefs.h. - AW
  1255. 10-28-94
  1256. * Uncache documents or bookmark file before reloads (via Control-R or
  1257.   'r'emove command) in LYMainLoop.c. - FM
  1258. * Uncache showinfo display or print, download, option, etc, menus before
  1259.   reloading those in GridText.c. - Dick Wesseling (ftu@fi.ruu.nl)
  1260. * Above two fixes still don't completely solve the anchor deletion problem,
  1261.   so we're still bypassing.
  1262. * Enable iso entity translations inside TITLEs - DW
  1263. 10-26-94
  1264. * Problems when deleting anchors have been reported, apparently for
  1265.   documents which have been (re)loaded with LYforce_no_cache.  So,
  1266.   we'll retore the bypass until that problem is tracked down. - FM
  1267. 10-25-94
  1268. * Added coded for disabling mail for -anonymous via CAN_ANONYMOUS_MAIL in
  1269.   userdefs.h, and via -restrictions=mail (default is enabled). - FM
  1270. 10-21-94
  1271. * Added Danny Mayer's (mayer@ljo.dec.com) samples/lynx.com - FM
  1272. 10-05-94
  1273. * Modified tcp.h to deal with conflicting typedefing in the MultiNet
  1274.   types.h and time.h versus those for DECC. - FM
  1275. * Define FANCY_CURSES for linux-ncurses. - FM
  1276. 09-30-94
  1277. * -restrictions help list in LYMain.c should indicate "option_save" (not
  1278.   "options_save") for disabling the saving of options in .lynxrc. - FM
  1279. 09-29-94
  1280. Mods based on patches from George Lindholm (lindholm@ucs.ubc.ca) - FM:
  1281. * Fixed problem when IGNORE_CTRL_C is defined, that was created by the
  1282.   fix for runaway processes on Unix when undetected terminal disconnects
  1283.   occurred.
  1284. * Added options to disable rlogin and/or ftp access.
  1285. 09-28-94
  1286. * Use "hack to fix reverse clear screen problem" in GridText.c if SUN4 is
  1287.   defined (still need clarification on the exact nature of the problem
  1288.   to decide if this is the best way to handle it; it bothers me to have
  1289.   this kind of hack in the code 8-) - FM
  1290. Mods based on patches from George Lindholm (lindholm@ucs.ubc.ca) - FM:
  1291. * Move the "quit" text to userdefs.h from LYMainLoop.c for easier
  1292.   customization.
  1293. * Typo fix for buttons submit value in GridText.c
  1294. * Renable SIGINT signal for SVR4 machines if control-c is to be ignored
  1295.   when editing.
  1296. * Solaris fixes for LYCurses.h.
  1297. * Recognize pico as a special editor.
  1298. * Fix -restrictions help text.
  1299. * Fix -telnet and -news options so that they actually do something.
  1300. * Fix upload code so that you can have more than one uploader option,
  1301.   and fix for freeing a static variable.
  1302. * Various prototype fixes.
  1303. * -editor command line option signals that the editor can't be changed.
  1304. * Added a SYSTEM_EDITOR option to lynx.cfg for a locked editor.
  1305. --- RELEASE of 2.3.4 BETA ---
  1306. 09-27-94
  1307. * Alas!  I think I've tracked down and fixed all the bugs that were causing
  1308.   ACCVIOs/CoreDumps if anchors were deleted/freed when freeing the cached
  1309.   documents.  So now we do delete/free them.  This plugs a major memory
  1310.   leak in Lynx (which we knew about, but heretofore had to live with). - FM
  1311. * Added Danny Mayer's (mayer@ljo.dec.com) fix so that MIME types are handled
  1312.   case-insensitively. - FM
  1313. * Restored text/html (WWW_HTML) as the default MIME type when an HTTP/1.0
  1314.   server fails to send it in the headers.  This happens because it's the
  1315.   default in Mosaic and developers using that don't realize their server or
  1316.   script code is failing to send it (other MIME types will be caught as an
  1317.   error, and the code will be fixed by the developers).  Garrett's change to
  1318.   application/octet-stream (WWW_UNKNOWN) was technically correct.  You can
  1319.   change it back to that where indicated in HTMIME.c if you prefer that Lynx
  1320.   be technically correct but functionally wrong when dealing with this
  1321.   situation. - FM
  1322. --- RELEASE of 2.3.3 BETA ---
  1323. 09-22-94
  1324. * Finished up redirection handling.  Will now handle serial redirections
  1325.   across multiple sites (with an arbitrary limit of 10, to prevent the
  1326.   possibilily of an infinite loop of circular redirections), works properly
  1327.   with redirections via the VALUE fields of OPTION tags, and no longer alters
  1328.   any anchor addresses, avoiding all the problems that caused in the hash
  1329.   table. - FM
  1330. * Worked in Rick Mallett's (rmallett@ccs.carleton.ca) fix for runaway
  1331.   processes on Unix when undetected terminal disconnects occur. - FM
  1332. * Added Eric Jon Rostetter's (ERIC@uoft02.utoledo.edu) code for proper
  1333.   keyboard handling with DEC eightbit terminals. - FM
  1334. * Added David Greer's (david_greer@robelle.com) mods for curses on
  1335.   HP terminals. - FM
  1336. --- RELEASE of 2.3.2 BETA ---
  1337. 09-17-94
  1338. * More fix ups of forms structure handling, freeing and redirecting. - FM
  1339. * Fixed problem with free's of startfile, thanks to Dick Wesseling
  1340.   ftu@fi.ruu.nl - FM
  1341. 09-14-94
  1342. * More memory leak and redirection fix ups (still not perfect). - FM
  1343. * Various mods to speed up memory management with VAXC on VAXen (still
  1344.   slow compared to DECC on AXPen). - FM
  1345. 09-13-94
  1346. * If an ISINDEX document is one returned by a previous search, the 's'
  1347.   command puts up the query which returned it, for editting as a new query
  1348.   (use Control-U to erase, Control-G to abort)  Otherwise, no string is
  1349.   offered in the prompt for a database query.  If the previous query is
  1350.   submitted without modification, a message to use Control-R to resubmit
  1351.   the same query is display (so that the search will not be repeated
  1352.   inadvertantly). - FM
  1353. 09-12-94
  1354. * Fixed failure to load the popped menu properly when a gopher search was
  1355.   selected and a NULL string, Control-G, or arrow key is entered to cancel
  1356.   the prompt for a query. - FM
  1357. * Hit lists/documents returned by ISINDEX searches are now always displayed
  1358.   at their tops.  They no longer inherit, inappropriately, the page and link
  1359.   numbers of the previous list/document. - FM
  1360. 09-11-94
  1361. * Fixed redirection handling so that the hash tables are updated and the
  1362.   history stack works properly, including with forms that have VALUE
  1363.   fields in OPTION tags that return Location: URL's for searches (e.g.,
  1364.   the CUSI forms at Nexor).  Whew, that took some doing! - FM
  1365. 09-05-94
  1366. * Fixed up remaining problems with <OPTION VALUE="foo"> handling and the
  1367.   associated popup window positioning and scrolling. - FM
  1368. * Fixed bugs and several inadequacies in the history structure and code
  1369.   (still needs some redesigning to deal more effectively with all aspects
  1370.   of documents returned by forms and/or redirection). - FM
  1371. * Now deals properly with anchors in a single document returned by
  1372.   a form. - FM
  1373. * Command line file specs on VMS can now be any valid explicit, wildcarded,
  1374.   partial, or relative VMS specification, and will be converted to a valid
  1375.   file://localhost/ URL, so that partial or relative URL's within the file
  1376.   also will be interpretted properly. - FM
  1377. * Now trims trailing white space and won't get tripped up by '=' characters
  1378.   when reading configuration files. - FM
  1379. * Miscellaneous bug fixes and enhancements. - FM
  1380. * Tracked down and eliminated more memory leaks. - FM
  1381. --- RELEASE of 2.3.1 BETA ---
  1382. 7-08-94
  1383. * Correction handling of <OPTION VALUE=""> implemented.
  1384. * Miscellaneous bugs corrected.
  1385. 6-17-94
  1386. * Option to log memory leaks at exit by defining LY_FIND_LEAKS at compilation.
  1387. 6-17-94
  1388. * Check amount of allocated memory, rather than just number of documents
  1389.   cached, before deciding to remove the oldest document (implemented for
  1390.   VMS with VAXC, not yet for Unix or VMS with DECC).
  1391. 6-16-94
  1392. * VMS bookmark file version numbers are reset on additions of bookmarks.
  1393. 6-16-94
  1394. * Gopher URL's with /hGET%20/ are converted to http URL's, as in the UMN
  1395.   Unix/VMS gopher+ client.
  1396. 6-16-94
  1397. * Added DIRECT_WAIS support for VMS
  1398. 6-16-94
  1399. * Added build support for VMS TCPWare TCP/IP
  1400. 5-28-94
  1401. * Increased nesting of HTML elements from 40 to 400.  Hopefully this will limit
  1402.   won't be encountered often.
  1403. 5-28-94
  1404. * Modified for handling of Telnet URLs with spaces/other characters in the
  1405.   username.
  1406. 5-26-94
  1407. * Began terminating memory leaks with extreme predjudice.
  1408. 5-24-94
  1409. * WAIS searches will now work when they are of type "www/present" as opposed
  1410.   to only viewing the source.
  1411. 5-23-94
  1412. * Added VMS CMU TCP/IP support, thanks to Andy Harper.
  1413. --- RELEASE of 2.3 ---
  1414. 5-19-94
  1415. * Better memory allocation routines used for some VMS systems.
  1416. 5-19-94
  1417. * Non-interactive (-source) access to documents requiring access authorization
  1418.   not allowed to avoid crashes.
  1419. 3-30-94
  1420. * Lynx exports the environment variable LYNX_VERSION on UNIX systems
  1421.   with the current version number as the value.
  1422. 3-29-94
  1423. * added "action=" handling to ISINDEX tags.  (Is that in the spec?)
  1424. 3-27-94
  1425. * fixed Telnet security problem
  1426. 3-19-94
  1427. * added .mailcap and mailcap support as well as mime.types support
  1428.   for the configuration of viewers and extension mappings.
  1429.   The test command is now implemented so that viewers can be conditionally
  1430.   setup.
  1431. 3-17-94
  1432. * Revamped the FTP code to recognize different server types and to parse
  1433.   full directory listings (LIST output).  File types, sizes and dates
  1434.   are displayed when possible.
  1435. 3-16-94
  1436. * added transparent support for mosaic bookmark files.  Just point
  1437.   Lynx at your existing default mosaic bookmark file and Lynx will
  1438.   handle the rest.  Viewing, addition, and removal are supported.
  1439. 3-15-94
  1440. * added second line of reverse video to show multiline links better.
  1441. 3-10-94
  1442. * added configurable MIME types and viewers to lynx.cfg.  MIME types
  1443.   and VIEWERS can be configured by following the instructions within
  1444.   the newest lynx.cfg file.
  1445. 3-?-94
  1446. * added second %s argument to PRINTER and DOWNLOADER definitions.
  1447.   If a second %s is present in the command definition it will be
  1448.   filled in by a suggested filename which is derived from the URL
  1449.   of the document.  See lynx.cfg for more details.
  1450. 3-?-94
  1451. * got code from CERN to fix HTBTree FTP bug.  Large ftp lists should
  1452.   not crash anymore.
  1453. 3-9-94
  1454. * added no_proxy environment variable.  set it to a comma delimited list
  1455.   of domains or hosts that should not be proxyed. (Thanks CERN :)
  1456.   USAGE: (UNIX)
  1457.      setenv no_proxy "domain1.dom, domain2.dom, domain3, etc"
  1458. 3-?-94
  1459. * Fixed Referer: field handleing so that it doesn't crash on really
  1460.   long URL's
  1461. 3-?-94
  1462. * True popup menus are now supported for non-multiple <select> lists.
  1463. 2-28-94
  1464. * fixed the delete-a-bookmark command and bound it to 'r' for remove.
  1465.   (thanks to David Trueman for the fix)
  1466.  
  1467. ---------- RELEASE of 2.2 ------------------
  1468. 2-9-94
  1469. * added 'd' for download current link.  Can be used to force a download
  1470.   of any file.
  1471. * 'r' removed as a comment key.  Use 'c' or reconfigure your keys to
  1472.   add 'r' back in.  (I would like to use 'r' in the future to mean
  1473.   remove current bookmark link)
  1474. * Found the bug in the HTTP redirection code that was causing it
  1475.   not to work.  So HTTP redirection appears to work now!
  1476. * Added Referer: header to HTTP requests to list the URL of
  1477.   the document listing the requsted URL.   Here's an extract from CERN:
  1478.      This optional header field allows the client to specify, 
  1479.      for the server's benefit, the address ( URI ) of the document 
  1480.      (or element within the document) from which the URI in the 
  1481.      request was obtained. 
  1482.  
  1483.      This allows a server to generate lists of back-links to documents, 
  1484.      for interest, logging, etc. It allows bad links to be traced 
  1485.      for maintenance.
  1486.  
  1487. 2-8-94
  1488. * changed novice line to be displayed on bottom two lines with the
  1489.   status line moved up two lines.
  1490. 1-27-94
  1491. * Made configurable keymappings a reality.  Keys can be remapped in
  1492.   the lynx.cfg file.  (diffs from David Trueman)
  1493. * Got code from Foteos to make 'a' work for VMS connection interrupts.
  1494. 1-24-94
  1495. * Moving closer towards configurable keymappings.  New keyhandleing
  1496.   code will make it very easy to implement. (diffs from David Trueman)
  1497. 1-14-94
  1498. * Lynx FTP now supports PASV code. (fixes to CERN (Dave Raggert?) PASV code
  1499.   from John Ellson)  It is not enabled by default.  Line 43 in
  1500.   WWW/Library/Implementation/HTFTP must be commented out for
  1501.   PASV code to be used.  This was done because not all FTP sites
  1502.   can support PASV FTP.
  1503. 1-13-94
  1504. * slight change in forms user interface.  For the better, I hope you will
  1505.   agree.  Text input fields are now active as soon as the cursor pointer
  1506.   is over them.  Therefore you may begin typing into the text field
  1507.   as soon as you come to it.  Tab, and up and down arrow keys will
  1508.   move off of the text input field.  The only problem with this is as
  1509.   follows.  If you are in the habit of using the number keys (keypad)
  1510.   the or h,j,k,l vi keys, as soon as you move over the text link
  1511.   you will begin seeing numbers or hjk or l show up in the text field.
  1512.   In other words, your movement commands are now broken :(  You must
  1513.   use true arrow keys or the tab key to move off of the text field.
  1514.   I've tried this out and it seems to work alright.  I don't think
  1515.   that users unfamiliar with this will have too hard a time figureing
  1516.   it out.  Once you see numbers or letter appearing it becomes fairly
  1517.   obvious whats going on.  I'll put a message at the bottom of the
  1518.   screen saying "use tab or arrow keys to move off of link."
  1519. * added mods by David Trueman to implement -restrictions commandline
  1520.   option.  -restrictions allows a list of services to be disabled
  1521.   selectively. -restrictions takes the form of
  1522.   "lynx -restrictions=[default],[all],[inside_telnet],[outside_telnet],[shell],\
  1523.     [editor],[bookmark],[option_save],[print],[file_url],[download],[exec]"
  1524.  
  1525.    all             restricts all options.
  1526.    default         same as commandline option -anonymous.  Disables
  1527.                default services for anonymous users.  Currently set to,
  1528.                all restricted except for: inside_telnet, outside_telnet, and
  1529.                goto.  Defaults settable within userdefs.h
  1530.    inside_telnet   disallow telnets for people coming from inside your
  1531.            domain.
  1532.    outside_telnet  disallow telnets for people coming from outside your
  1533.            domain.
  1534.    shell       disallow shell escapes
  1535.    editor       disallow editing
  1536.    bookmark       disallow changing the location of the bookmark file.
  1537.    options_save    disallow saving options in .lynxrc
  1538.    print           disallow most print options
  1539.    goto            disable the 'g' (goto) command.
  1540.    file_url        disallow using G)oto to go to file: URL's
  1541.    download        disallow saving binary files to disk in the download menu.
  1542.    exec            disable execution scripts
  1543.    exec_frozen     disallow the user from changing the execution link
  1544.            setting in the O)ptions menu.
  1545. 1-12-93
  1546. * added new more informative messages for form links.
  1547. 1-11-93
  1548. * fixed -dump and -source options so that they work for
  1549.   binary files now.
  1550. * Interruptable I/0 now completely works for UNIX systems.
  1551.   VMS is next.  Just hit an 'a' for abort anytime during a
  1552.   transfer to abort.  If there is a partial file to show, it
  1553.   will be shown.
  1554. * Added command line option -show_curser.  If enabled the curser
  1555.   will not be hidden in the right hand corner but will instead 
  1556.   be positioned at the start of the currently selected link.
  1557.   show curser is the default for systems without FANCY_CURSES
  1558.   capibilities, and the default configuration can be changed in
  1559.   userdefs.h
  1560. 1-9-93
  1561. * Added NNTP posting capibilities.  Currently uses external inews
  1562.   program which will be included in the utils directory.
  1563.   Would someone like to patch in some freeware inews code, or
  1564.   send me some?
  1565. 1-7-93
  1566. * fixed bug in password handling which cuased it to be displayed
  1567.   accidentally :(  (Danny Mayer)
  1568. 1-6-94
  1569. * bold and emphasis now use curses underlining to represent
  1570.   ephasized text.  The use of _underline_ chars before and after
  1571.   the text is now removed.
  1572. 1-5-94
  1573. * Added configurable download menu so that binary files may
  1574.   be downloaded using any protocal.  Download menu is displayed
  1575.   after selecting a non-displayable file.
  1576. * Added exec links.  4 types currently defined:
  1577.     files ending in:  .csh, .ksh, .sh, (for UNIX)  and .com (for VMS);
  1578.   Use exec link controls to turn on and off exec links.
  1579. * Gopher menues are now within <pre> so that spaces are not
  1580.   collapsed in menu entries.
  1581. * added configurable character sets.  Can be set in lynx.cfg
  1582.   by the user in the options screen or in the users .lynxrc file
  1583.   current sets are: ISO Latin I, IBM PC Character set, & 7 bit
  1584.   approximations.  New sets can be added to src/LYCharSets.c
  1585.  
  1586. ----------RELEASE of Lynx 2.1 and 2.1.1----------------------
  1587. -grey area-
  1588. * Ability to FTP to VMS systems. (Foteos Macrides)
  1589. * Fixed lots of display and interupt problems (Foteos Macrides)
  1590. * The Lynx Bookmark file is now interpreted as an HTML document.  
  1591.   Old Lynx bookmark files must be converted using the lynx2html
  1592.   program or deleted.
  1593. * HTML+ forms as implemented by XMosaic now work. 
  1594.   fill in the empty spaces and press the submit button to
  1595.   submit the form.
  1596. * The <textarea> tag isn't done yet.  It will currently only
  1597.   give a one line text area.  The next version of Lynx will
  1598.   include a true textarea implementation once I figure out a
  1599.   reasonable interface.
  1600. * Incorporated WWWlib 2.14 and fixed up the descrip.mms files.
  1601.   Foteos Macrides made VMS port changes and wrote a really nice
  1602.   build.com script to make compilation on VMS systems really easy.
  1603.   Foteos also ported Lynx to OpenVMS for alpha axp systems. 
  1604. * 's' now means search a searchable indexed document through the
  1605.   server, and can no longer be used to search for strings within
  1606.   the displayed document.
  1607. * '/' now only searches through the current displayed document for
  1608.   strings and can not be used for searchable index documents.
  1609. * Capital 'Q' now quits without asking for confirmation.
  1610. * 'm' for Main Menu now askes for confirmation and does NOT clear
  1611.   the history stack.
  1612. * Blockquote style changed slightly.
  1613. * fixed bug with <a> and other tags messing up formatting
  1614.   withing <PRE> segments.
  1615. * Verbose Gopher option removed, verbose gopher functionality
  1616.   is now set permenantly on.
  1617. * Default editor is now configurable in the lynx.cfg file.
  1618. * Default bookmark file is now configurable in the lynx.cfg file.
  1619.  
  1620. 12-15-93
  1621. * ownership is no longer inherited.
  1622. * <link rev="owner" href="mailto:ADDRESS"> now accepted as well as
  1623.   <link rev="made" href="mailto:ADDRESS"> to define the URL of the
  1624.   owner or person responsible for the info.
  1625. * 's' now only searches <isindex> server documents.
  1626. * '/' always means search within the document.
  1627.  
  1628. -grey area-
  1629. * still doing massive rewrite. Debugging!!
  1630.  
  1631. 11-30-93
  1632. * anonymous users cannot change the bookmark page! (thanks to Jyrki Kuoppal for
  1633.   pointing out a security hole)
  1634.  
  1635. -grey area-
  1636. * massive rewrite.  Removed all Lynx internal format code and 
  1637.   restructured all the source files.
  1638.  
  1639. 11-8-93
  1640. * added   (non-breaking space),   and  
  1641.  
  1642. ---------- RELEASE of 2.0.12 -----------------
  1643. 11-1-93
  1644. * Change HTInit.c so that unsupported types are not sent out
  1645.   in accept parameters.  For non X screen only text/html and
  1646.   application/octet-stream are sent.
  1647.  
  1648. 10-26-93
  1649. * descriptive title added to files mailed from lynx
  1650.  
  1651. 10-25-93
  1652. * disabled FTP connection caching to help fix multiple FTP problems
  1653.  
  1654. 10-23-93
  1655. * added preliminary level 1 forms support.
  1656.  
  1657. 10-20-93
  1658. * fixed a bunch of gopher holes
  1659. * gopher lists are turned into URL's now instead of lynx
  1660.   internal format document links
  1661. * local documents ending in .html can now be referenced with
  1662.   just a filename and/or path from the command line.
  1663.  
  1664. 10-19-93
  1665. * Added preloaded searches to gopher URL's.  They previously
  1666.   didn't work.  This is readily apparent as preloaded CSO
  1667.   searches, which alot of people wanted.
  1668. * removed old hytelnet compatibility code which looked in
  1669.   multiple directories to find the correct file.  If you still
  1670.   need this capibility talk to me.
  1671.  
  1672. 10-12-93
  1673. * The users specified editor is now spawned for mail messages.
  1674.   If no editor is defined or if the user is anonymous, the built-in 
  1675.   lynx mail sender is used.
  1676.  
  1677. 10-11-93
  1678. * changed all static data structures to be dynamic
  1679.   This was a pretty major change of code which may add several
  1680.   bugs.
  1681. * rewrote parse_links routine to make it more efficient and to
  1682.   work with dynamic structures.
  1683.  
  1684. 10-6-93
  1685. * added progress messages to HTTP transfers.
  1686.  
  1687. 10-5-93
  1688. * added -cache=# command line option to specify the number
  1689.   of WWW documents cached in memory.
  1690.  
  1691. 9-28-93
  1692. * added VMS port fixes from Foteos Macrides.  Lynx now
  1693.   compiles and works on VMS!
  1694. * fixed ftp bug in WWWlib that didn't de-escape URL's before
  1695.   sending request to FTP server.
  1696.  
  1697. 9-21-93
  1698. * fixed coredump bug for some files with no links.
  1699.  
  1700. 9-3-93
  1701. * Moved many configuration options including printer setup to 
  1702.   lynx.cfg file.  The default placement of the lynx.cfg file
  1703.   will be /usr/local/lib & sys$public
  1704.  
  1705. 9-1-93
  1706. * Removed STARTDIR variable from userdefs.h  STARTDIR is now inferred
  1707.   from the STARTFILE.
  1708.  
  1709. 8-30-93
  1710. * Fixed bug with only one link selectable out of many on the last line
  1711.   of the display.
  1712. * Ported to SVR4 courtesy of Nickolay Saukh (from Russia, Wow this is
  1713.   really getting around!) 
  1714. * Uneditable documents don't get refetched. (Nickolay Saukh)
  1715. * National language support through LOCALE
  1716.   (instead of ISOLATIN1), protected by #ifdef LOCALE (Nickolay Saukh)
  1717.  
  1718. ------Release of Lynx 2.0.11--------------------------------
  1719. 8-27-93
  1720. * Caused major international incident when a large bug was discovered after
  1721.   release. :)
  1722. * Fixed internal document hypertext refernces with URL's.  '#selector'
  1723.   strings now work again.
  1724.  
  1725. 8-24-93
  1726. * When files come through on pre HTTP/1.0 servers they are now
  1727.   recognized by their file extensions
  1728.  
  1729. 8-23-93
  1730. * Lynx can now speak to old NCSA pre HTTP/1.0 servers
  1731. * fixed ALT bug that had to do with style changes not
  1732.   happening before the alt was printed.
  1733.  
  1734. 8-21-93
  1735. * updated the man file lynx.1.
  1736.  
  1737. 8-19-93
  1738. * updated help and converted it to HTML.  Made a new help location and
  1739.   server.  The new default help file is 
  1740.   http://kufacts.cc.ukans.edu/lynx_help/lynx_help_main.html
  1741.  
  1742. 8-15-93
  1743. * changed '\' to toggle between source and no source.  When you press
  1744.   '\' while viewing a rendered HTML document you will get the HTML source
  1745.   when you press '\' while viewing HTML source you will get the
  1746.   rendered HTML.
  1747. * Added ALT attribute to IMG tag.  When ALT is available the contents
  1748.   are displayed.  When ALT is missing [IMAGE] is displayed.  When
  1749.   ALT="" nothing is displayed.
  1750.  
  1751. 8-14-93
  1752. * Added document reload command.  CTRL-R when pressed will reload
  1753.   the document into memory and redisplay it, clearing the screen.
  1754.   This is very useful when editing documents, outside of Lynx while 
  1755.   using Lynx for rendering.
  1756. * Added source view mode.  '\' when pressed will reload the document
  1757.   and display the HTML source. (doesn't work for gopher directoryies right 
  1758.   now, but gopher isn't HTML anyways)
  1759. * fixed bug in LibWWW that caused it not to be able to convert to
  1760.   www/source.
  1761. * fixed bug in LibWWW that caused most binary file transfers to fail
  1762. * added binary file transfer ability.  When binary files are selected
  1763.   the user is prompted for a file name to save to.  The default directory
  1764.   is the one the user started in.
  1765. * Lynx now reloads local HTML files and re-renders them after editing.
  1766.  
  1767. ??-??-??
  1768. * At some point I added the ability to edit HTML files on the local
  1769.   machine.  
  1770.  
  1771. 8-12-93
  1772. * Added Nested Lists, up to six levels, with different bullets
  1773.   for each level.
  1774. * Due to the fact that nearly everyone seems to use <p> to mean
  1775.   two returns within the same style, and Mosaic has been kind 
  1776.   enough to support this meaning, :( :( :(  I have changed
  1777.   the <p> tag to reflect this interpretation.  <p> can be used
  1778.   anywhere and will mean insert two returns.  (i.e. two <br> tags)
  1779.  
  1780. 8-11-93
  1781. * Made the default Mime type for unknown file types on ftp servers
  1782.   to be text/plain.  Previously the WWWLibrary had the default
  1783.   as application/octet-stream which meant that most files could not
  1784.   be viewed.
  1785. * Changed the ADDRESS style to be more like XMosaic
  1786.   Left flush, newline top and bottom
  1787. * The Statusline now displays the URL when retrieving files.
  1788. * added BR (linebreak) tag!
  1789.   The <br> tag inserts a line break and maintains the current style!
  1790.   The <br> tag may be used anywhere.
  1791. * added HR (horizontal rule tag!)
  1792.   The <hr> tag puts a horizontal line seperating two bodies of text.
  1793.   The <hr> tag may be used anywhere.
  1794.  
  1795. 8-8-93
  1796. * All spaces, tabs and returns are now collapsed down do one
  1797.   space.
  1798. * fixed bug whiched caused certain links beginning at the
  1799.   begining of a line to be bad.
  1800. * added '*' (stars) to unordered lists and numbers to ordered
  1801.   lists.
  1802. * changed dir lists to be more like menu lists.
  1803. * all emphasis, physical and symantic, now have _underlines_
  1804.   around them to show emphasis.
  1805.  
  1806.  
  1807. RELEASE OF VER 2.0.10 -----------------------------------------------
  1808.  
  1809. 7-8-93
  1810. Added [IMAGE] in all places where <IMG> tags appear.
  1811. added WWW_HOME environment variable support.
  1812. fixed searching in WWW.
  1813. removed tildas from mail messages for security reasons.
  1814. added emacs-like key defs.
  1815. changed gopher dir routines and Verbose format of directories
  1816.  
  1817. 6-30-93
  1818. Forgot to put all kinds of bug fixes and stuff in here during the
  1819. past month.  I have been working on upgrading to the 2.X WWWlibrary
  1820. Today I changed 'g' to mean goto a url, and 'v' to be view the
  1821. bookmark page.
  1822.  
  1823. 5-30-93
  1824. Fixed problem with ftp: URL not being recognized and not working.
  1825.  
  1826. 5-28-93
  1827. Tried to remove the use of tabs and replace them with appropriate
  1828. spaces.  This was done to support brain dead curses packages that
  1829. don't handle tabs. (like linux)
  1830.  
  1831. 5-20-93
  1832. Fixed socket problem which was causing a problem with telnet's
  1833. connecting
  1834.  
  1835. 5-18-93
  1836. Fixed SUN curses problem, now works with the /usr/5lib routines
  1837.  
  1838. 4-9-93
  1839. Added an option to turn on link numbering
  1840.  
  1841. 4-7-93
  1842. Fixed read_rc() bug which caused .lynxrc files to be read incorrectly
  1843. Fixed file cacheing bug which only allowed searching to be performed
  1844. once.  (it cached the answer and displayed that each time a new
  1845. search was requested)
  1846.  
  1847. 4-2-93
  1848. Fixed VMS I/O bug and TCP routines.
  1849.  
  1850. 4-1-93
  1851. Ported 2.0 to VMS
  1852.  
  1853. 3-17-93
  1854. Fixed a bug: Multiply defined procedure async_abort in
  1855. the files get_file and get_bin_file
  1856.  
  1857. 3-16-93
  1858. Optomized Gopher TCP routines, increased speed by a factor of 10!
  1859.  
  1860. 3-9-93
  1861. Added WWW support by integrating the WWWlib1.4
  1862.  
  1863. 2-10-93
  1864. Added home page support and append features.
  1865.  
  1866. 12-22-92
  1867. Added support for Image types using xloadimage for X-terminals.
  1868.  
  1869. 12-1-92
  1870. Added gopher binary file types
  1871.